我正在製作一個應用程序,用於檢索不在我控制範圍內的API數據。我有以下情況:燼數據適配器中的動態段
檢索帖子的路徑是/api/posts
。所以我配置我的ApplicationAdapter如下:
App.ApplicationAdapter = DS.RESTAdapter.extend({
namespace: 'api'
});
檢索評論的網址是'/ api/posts/1/comments'。您可以看到,網址前綴爲檢索單個post
後跟默認路徑/comments
的路徑。
Ember數據默認爲/api/comments
。但是我想爲我的Comment
-model配置一個適配器,以便使用當前帖子的id替換正確的url:/api/posts/:post_id/comments
,並將:post_id
替換爲該模型的id。我怎麼做?
你想,當你做'post.get做'剛剛/ API /職位/ 1/comments'( '意見')'但使用'store.find(當'comments')',url會是'/ api/c omments'? –