1

同じオブジェクトから多くの質問があります。しかし、私のは少し違います。違いは、私の問題では、バックボーン モデルのみのバックボーン ビューを使用していないことです。

バックボーン ビューのみを使用しています。以下は、ビューを初期化したときのエラースタックです。

Uncaught TypeError: Cannot use 'in' operator to search for 'model' in ace-edit-spec-examples-1-8
(anonymous function) underscore.js:783
_.each._.forEach underscore.js:78
_.pick underscore.js:782
_.extend._configure backbone.js:1086
Backbone.View backbone.js:983
child backbone.js:1529
Backbone.View.extend.render itemview.js:90
Backbone.View.extend.addListItem listview.js:99
Backbone.View.extend.renderList listview.js:84
(anonymous function) listview.js:42
_.each._.forEach underscore.js:78
Backbone.View.extend.render listview.js:41
Backbone.View.extend.render tabview.js:124
(anonymous function) tabview.js:50
collection.fetch.success util.js:28
options.success backbone.js:854
fire jquery.js:1037
self.fireWith jquery.js:1148
done jquery.js:8074
callback 

何か助けはありますか?

編集 :

私の見解

var AceEditorView = Backbone.View.extend({
        initialize: function (id,type,here) {
          this.id = id;
          this.type = type;
          this.here = here;
          //this.render();
        }});

私の電話:

new AceEditorView('ace-edit-spec-examples-1-'+json.id,'json',this);
4

1 に答える 1