我正在构建一个简单的 Backbone 应用程序,其中我主要有一个包含书籍列表(书名 + 封面图片)的视图和另一个我想将新书添加到列表中的视图。
当我使用示例数据时,带有书籍的视图可以正确呈现,但是当我尝试将书籍添加到列表中时它不起作用,我不知道哪个是问题所在。
这是 JSFiddle http://jsfiddle.net/swayziak/DRCXf/4/和我的代码:
HTML:
<section class="menu">
<ul class="footer">
<li><a href="">List of Books</a></li>
<li><a href="#edit">Edit</a></li>
<li><a href="#about">About</a></li>
</ul>
</section>
<section class="feed"></section>
<script id="bookTemplate" type="text/template">
<img src="<%= image %>"/>
<h2 class="bookTitle"><%= title %><h2>
</script>
<script id="aboutTemplate" type="text/template"> About </script>
<script id="editTemplate" type="text/template">
<form id="addBook" action="#">
<label for="title">Book Title</label><input type="text" id="title">
<label for="image">Image Link</label><input type="text"/ id="image">
<button id="add-book">Button</button>
</form>
</script>
</div>
和主干代码:
app = {};
// 样本数据
var books = [
{title:'Imperial Bedrooms', image:'http://upload.wikimedia.org/wikipedia/en/thumb/e/e8/Imperial_bedrooms_cover.JPG/200px-Imperial_bedrooms_cover.JPG
},
{title:'Less than zero',
image:'http://d.gr-assets.com/books/1282271923l/9915.jpg'
},
];
//路由器
app.Router = Backbone.Router.extend({
routes: {
'' : 'home',
'about' : 'about',
'edit' : 'edit',
},
home: function () {
if(!this.bookListView){
this.bookListView = new app.BookListView(books);
}else{
this.bookListView.render();
}
},
about: function () {
if (!this.aboutView) {
this.aboutView = new app.AboutView();
}
$('.feed').html(this.aboutView.render().el);
},
edit: function () {
if (!this.editView) {
this.editView = new app.EditView();
);
$('.feed').html(this.editView.render().el);
}
});
// 模型
app.Book = Backbone.Model.extend({
defaults: {
title:'',
image:'',
}
});
// 收藏
app.BookList = Backbone.Collection.extend ({
model: app.Book
});
// 图书视图
app.BookView = Backbone.View.extend ({
tagName: 'div',
className: 'book',
template: _.template( $( '#bookTemplate' ).html()),
render: function() {
this.$el.html(this.template(this.model.toJSON()));
return this;
}
});
// 图书列表视图
app.BookListView = Backbone.View.extend({
el: '.feed',
initialize: function ( initialBooks ) {
this.collection = new app.BookList (initialBooks);
this.render();
this.listenTo( this.collection, 'add', this.renderBook );
},
render: function() {
this.$el.empty();
this.collection.each(function( item ){
this.renderBook( item );
}, this);
},
renderBook: function ( item ) {
var bookview = new app.BookView ({
model: item
});
this.$el.append( bookview.render().el );
}
});
// 添加书籍视图
app.EditView = Backbone.View.extend({
tagName: 'div',
className: 'edit',
template: _.template( $( '#editTemplate' ).html()),
events:{
"click #add-book":"addBook"
},
addBook:function(e){
e.preventDefault();
var title = this.$el.find("#title").val();
var image = this.$el.find("#image").val();
var bookModel = new app.Book({title:"title",image:'image'});
},
render: function () {
this.$el.html(this.template());
return this;
}
});
// 关于视图
app.AboutView = Backbone.View.extend({
tagName: 'div',
className: 'about',
template: _.template( $( '#aboutTemplate' ).html()),
render: function () {
this.$el.html(this.template());
return this;
}
});
});
var router = new app.Router();
Backbone.history.start();
我认为问题与 Home 路由器、app.BookListView 和 app.EditView 有关,但我不确定。
欢迎任何帮助。
谢谢。