作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只是想将数据从夹具适配器获取更改为 REST 适配器。我无法在文档中找到正确的语法...无论我尝试什么,都不会针对 REST 接口(interface)执行任何 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');
}
});
最佳答案
你的类名有误,应该是 DS.RESTAdapter
而不是 DS.RestAdapter
试试这个:
App.Store = DS.Store.extend({
revision: 12,
adapter: DS.RESTAdapter.create({
url: 'http://localhost:3000'
})
});
希望对您有所帮助。
关于ember.js - Ember 数据 : How to specify usage of REST adapter in recent Ember version?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17965330/
我是一名优秀的程序员,十分优秀!