1

我在尝试在我们的应用程序中实现骨干关系时遇到问题。

尝试获取 RelationalModel 后出现此错误: 未捕获的类型错误:无法读取 null 的属性“id”

这是模块

App.Models.Story = Backbone.RelationalModel.extend({
urlRoot: '/rest/v1/story/',
url:function(){
     if (this.isNew()) {
          return this.urlRoot;
    } else {
     return  this.urlRoot + this.id + "/";
    } 
},
idAttribute: 'id',
relations: [{
      type: Backbone.HasMany,
      key: 'pieces',
      createModels: true,
      relatedModel: 'App.Models.Piece',
      collectionType: 'App.Collections.Pieces',
      includeInJSON: false,
      reverseRelation: {
         key: 'story'
     }
  }],
     initialize: function(){
         this.get('pieces').url = _.bind(function(){
             return this.url() + "piece/"
         }, this);
        console.log("hello from story model");
    }
});

这是集合

 App.Collections.Stories = Backbone.Collection.extend({
 url:'/rest/v1/story/',
 model: App.Models.Story
});

我像这样从我的 API 中检索数据

get all stories    : GET /rest/v1/story/
get story no' 10   : GET /rest/v1/story/10/
get story pieces   : GET /rest/v1/story/10/piece/
get piece no' 612  : GET /rest/v1/piece/612/

现在当我尝试做

var story = App.Models.Story({id:10});
story.fetch()

我收到此错误: 未捕获的类型错误:无法读取 null 的属性“id”

对象本身通过响应的 Json 成功创建。

该错误使 RelationalModel 无法建立关系。

谢谢。

4

0 回答 0