再会,
删除links.related
我的 JSON 响应会影响任何Ember-Data
关系获取吗?
relationships": {
"comments": {
"links": {
"related": "http://localhost:3099/api/v1/articles/1/comments"
},
"data": [
{
"type": "comments",
"id": 1
},
{
"type": "comments",
"id": 2
},
{ ... More comments here ... }
]
}
}
我读过这篇文章:https ://thejsguy.com/2016/02/21/handling-nested-resources-in-ember-data.html这让我知道Ember数据在内部使用这些链接来获取相关数据所以我不必访问这些 URL 并向它们发出请求。在我们对 API 进行任何更改之前,我需要更具体的意见。