【发布时间】:2018-10-13 11:33:07
【问题描述】:
假设我有如下 JSON 数据:
tasks=[
{
"id":17,
"title":"Browse through the list of books",
"how_often":"DO",
"how_important_task":"EI",
"role":"reader",
...
},
{
"id":18,
"title":"Search for a book",
"how_often":"DS",
"how_important_task":"EI",
"role":"reader",
...
},
{
"id":19,
"title":"Request a book",
"how_often":"WO",
"how_important_task":"RI",
"role":"reader",
...
},
{
"id":26,
"title":"See latest arrivals of the books",
"how_often":"MO",
"how_important_task":"LI",
"role":"reader",
...
}
]
我有兴趣从这些数据中提取名词和动词,可能分别针对每个任务对象。
- 在我的 Angular 前端或 django 后端上处理是否更容易/更好?
- 是否有任何 Angular 库可以做这样的事情?
- 有 django 的库吗?
【问题讨论】:
标签: django angular django-rest-framework