3

我在这里阅读了有关该论点的所有主题,但我无法理解这段代码的含义,我花了几个小时试图了解它:

当我触发事件保存并从 TranslationView 中删除时,它显示“未捕获的错误:必须指定“url”属性或函数”。我试图找出其他代码,但即使将 url 属性明确添加到集合中它也不起作用......提前谢谢你

  /**
 * Translation Collection - The document
 * -- Collection of all translations in a document
 */
var Document = Backbone.Collection.extend({
        model: Translation,
        localStorage: new Backbone.LocalStorage("translations-db")    
    });
var Docs = new Document;

/**
 * Translation View
 * -- A single language version
 * This is a version of translation
 */

var TranslationView = Backbone.View.extend({
    template: _.template('<div class="cnt-translation"><span class="delete-btn">delete</span><span class="save-btn">save</span> Language: <input value="english" /><textarea id="translation_0" class="translation"></textarea></div>'),

    events: { 
      'click span.delete-btn': 'remove',
      'click span.save-btn': 'save'
    },
      //'chnage ul#main-menu #add': 'addText'

    initialize: function(){
      _.bindAll(this, 'render', 'unrender', 'remove','save'); 
      this.listenTo(this.model, 'destroy', this.remove);
    },

    render: function(counter){
      this.$el.html(this.template(this.model.toJSON()));    
      return this;
    },

    unrender: function(){
      $(this.el).remove();
    },

    remove: function(){
      console.log(this.model);
      this.model.destroy();
    },

    save: function(){
      console.log(this.model);
      this.model.save();
      console.log(localStorage);

    }

});


/**
* Translation Main View
* -- The Application
* This is the top level piece of the app
*/

var AppView = Backbone.View.extend({
    el: $('#application'),
    type: 'localStorage', // in future also "remoteStorage"

    events: {
      'click #add_trans': 'createOnEnter',
      'click #save_trans': 'saveTranslations',
      'click #remove_trans': 'removeTranslation'
    },

    initialize: function(){
      _.bindAll(this, 
        'render',
        'saveTranslations',
        'addTranslation'
      ); 
      this.listenTo(Docs, 'add', this.addTranslation);
      this.listenTo(Docs, 'all', this.render);
      this.listenTo(Docs, 'reset', this.reloadAll);
      this.render();
      console.log('initialized and texts loaded');
      Docs.fetch();
    },
    ....

    render: function(){  
      var self = this;
      /*
      _(this.collection.models).each(function(translation){ 
        self.appendTranslation(translation);
      }, this);
      */
    }

    addTranslation: function(){
      console.log('addTrans called');
      var translation = new Translation();
      translation.set({
        id: 'translation_' + Docs.length,
        language: 'english' // modify item defaults
      });
      var translationView = new TranslationView({ model: translation });
      $(this.el).append(translationView.render().el);
      console.log(Docs);
    },

    createOnEnter: function(e) {
      Docs.create({title: 'new trans'});
    }


}); 


var ENTER_KEY = 13;    
var app = new AppView();
console.log(app);
})(jQuery);
4

1 回答 1

2

您的问题是您尝试保存/销毁从未与本地存储支持的集合关联的模型对象。

本地存储插件首先localStorage在模型上查找属性,如果它没有找到它会在模型​​的集合中查找,localStorage如果仍然没有localStorage找到它会回Backbone.Sync退到需要的默认行为,url所以你会得到异常。

你有一个独立的模型对象,因为你在你的addTranslation

var translationView = new TranslationView({ model: translation });

但是您不需要这样做,因为当一个项目添加到您的集合中时会调用此方法,并且您将新添加的项目作为参数获取。

你只需要改变你的方法使用参数translation而不是创建一个新的。

addTranslation: function(translation){
    translation.set({
        id: 'translation_' + Docs.length,
        language: 'english' // modify item defaults
    });

    var translationView = new TranslationView({ model: translation });

    $(this.el).append(translationView.render().el);
},
于 2013-07-18T15:17:00.233 回答