将 Backbone 添加到 Rails 应用程序,我在这样的应用程序命名空间内创建了一个 post 模型
var app = {
this.models.post = new app.Models.Post();
在路由器中,我创建了以下路由
"posts/:id": "postDetails"
当我导航到 /posts/4 时,Uncaught TypeError: object is not a function
当我尝试像这样在模型上调用 fetch 时出现错误
postDetails: function (id) {
console.log(id);
var post = new app.models.post({id: id});
this.post.fetch({
success: function (data) {
$('#content').html(new PostView({model: data}).render().el);
}
});
}
根据 Backbone 文档http://backbonejs.org/#Model-fetch,我应该能够在模型上调用 fetch 以从服务器检索数据。为什么 Backbone 认为我将对象视为函数?