一个灰烬noob问题 - 为了学习它我试图制作一个简单的博客应用程序。我试图加载帖子索引,但收到错误
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:3000/api/osts
这是有道理的,因为它应该是
http://localhost:3000/api/posts
我在这里犯了什么错误? - >
Blog.Post = DS.Model.extend({});
Blog.PostsRoute = Ember.Route.extend({
model: function() {
this.get('store').findAll('post')
}
})
Blog.Router.map(function() {
this.resource('posts');
});
Blog.Store = DS.Store.extend({
adapter: 'Blog.ApplicationAdapter'
});
Blog.ApplicationAdapter = DS.RESTAdapter.extend({
namespace: 'api'
})
答案 0 :(得分:0)
我不得不改变
this.get('store').findAll('user');
到
this.get('store').findAll('User');
-.-