我只是想将从夹具适配器中获取的数据更改为 REST 适配器。我在文档中找不到正确的语法......无论我尝试什么,都不会针对 REST 接口执行 JSON 调用。
有人可以帮忙吗?
附言。当我简单地使用 JQuery 调用 ( return $.getJSON('http://localhost:3000/articles.json');
) 时,这是可行的,但如上所述,我想使用 Ember REST 适配器......
我的模型:
App.Article = DS.Model.extend({
title: DS.attr('string'),
author: DS.attr('string'),
body: DS.attr('string')
});
我的固定器适配器:
App.Store = DS.Store.extend({
revision: 12,
adapter: 'DS.FixtureAdapter'
});
我的 REST 适配器(不工作)
App.Store = DS.Store.extend({
revision: 12,
adapter: DS.RestAdapter.create({
url: 'http://localhost:3000'
})
});
我的路线
App.ArticleRoute = Ember.Route.extend({
model: function () {
App.Article.find();
//return $.getJSON('http://localhost:3000/articles.json');
}
});