我正在学习Backbone.js。我可以找到一千一百个Backbone.js教程,但是它们似乎都没有涉及从RESTful API获取数据。我发现的其他解决方案似乎都不适合我的特定问题。
以下代码在创建模型(包含静态数据)并将其添加到集合中时起作用,但是当我使用测试RESTful服务时,视图将无法呈现,但是我可以在控制台中看到响应。
我确定我缺少简单的东西,但不能指望它是什么。
这是我的小提琴:https://jsfiddle.net/Currell/xntpejwh/
如果您希望在此处查看代码段,请在下面。
测试RESTful API:https://jsonplaceholder.typicode.com/
HTML:
<div id="js-spa-container"></div>
JS:
var Post = Backbone.Model.extend();
var Posts = Backbone.Collection.extend({
model: Post,
url: 'https://jsonplaceholder.typicode.com/posts',
initialize: function(){
this.fetch({
success: this.fetchSuccess,
error: this.fetchError
});
},
fetchSuccess: function (collection, response) {
console.log('Fetch response: ', response);
},
fetchError: function (collection, response) {
throw new Error("Books fetch error");
}
});
var PostView = Backbone.View.extend({
tagName: 'li',
render: function() {
this.$el.html(this.model.get('title'));
return this;
}
});
var PostsView = Backbone.View.extend({
render: function() {
var _this = this;
this.collection.each(function(post) {
// Put the current post in the child view
var _postView = new PostView({ model: post });
// Render the post and append it to the DOM element of the postsView.
_this.$el.append(_postView.render().$el);
});
}
});
var posts = new Posts();
var postsView = new PostsView({ el: '#js-spa-container', collection: posts });
postsView.render();
答案 0 :(得分:1)
使用REST API时,您需要一种机制来等待请求成功后再执行操作。
这是一个简单的解决方法:https://jsfiddle.net/wnxhq98p/
posts.fetch({
success: postsView.render.bind(postsView),
error: this.fetchError
});
一种常见的模式是在View的initialize
中获取集合,并在调用成功后将其命名为render
。
或者创建集合,在视图的initialize
内设置集合事件侦听器,它将适当地呈现视图,然后在Backbone路由器内部获取集合,但是要使此工作正常,集合获取不能立即在{{1 }},以便让其他组件有机会设置监听集合的事件