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