Ember请求“ost”而不是“帖子”

时间:2014-05-01 00:46:35

标签: ember.js

一个灰烬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'
})

1 个答案:

答案 0 :(得分:0)

我不得不改变

this.get('store').findAll('user');   

this.get('store').findAll('User');

-.-