我在这样做的时候 star着,试图制造各种ak子,却徒劳无益。
为什么我拿到“这......模仿是没有界定的”错误
$(function(){
window.Sentence = Backbone.Model.extend({
initialize: function() {
console.log(this.toJSON())
}
});
window.Text = Backbone.Collection.extend({
model : Sentence,
initialize: function(models, options){
this.url = options.url;
}
});
window.SentenceView = Backbone.View.extend({
initialize : function(){
_.bindAll(this, render );
this.template = _.template($( #sentence_template ).html());
},
render : function(){
var rendered = this.template(this.model.toJSON());
$(this.el).html(rendered);
return this;
}
})
window.TextView = Backbone.View.extend({
el : $( #notebook ) ,
initialize : function(){
_.bindAll(this, render );
},
render : function(){
this.collection.each(function(sentence){
if (sentence === undefined){
console.log( sentence was undefined );
};
var view = new SentenceView({model: sentence});
this.$( ol#sentences ).append(view.render().el);
});
return this;
}
});
function Notebook(params){
this.text = new Text(
// models
{},
// params
{
url: params.url
}
);
this.start = function(){
this.text.fetch();
this.textView = new TextView({
collection: this.text
});
$( body ).append(this.textView.render().el);
};
}
window.notebook = new Notebook(
{ url : js/mandarin.js }
);
window.notebook.start();
})
有一个网上版本的“you子”可以发现奥ole中的错误:
http://lotsofwords.org/English/chinese/notebook/
整个文件是:
https://github.com/amundo/notebook/
犯罪线似乎是:
我发现这种ple情,因为只要我能够把 it在<代码>上。 原文:<>。 syntax,我仅可以指出,Sentence
的模型为何没有显示出应有的进展。