作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我期望的目标是让控制台记录每个帖子的标题(从我的 API 获取)。然而,我似乎做错了一些事情,特别是我在 this.listenTo(PostCollection, 'add', this.render);
-- 我想监听 PostCollection 中的任何添加内容并触发事件以从 API 获取所有对象。这是错误堆栈:
Uncaught TypeError: obj[implementation] is not a function
_.each.Events.(anonymous function) @ backbone.js:225
Backbone.View.extend.initialize @ test.js:61
Backbone.View @ backbone.js:1001
child @ backbone.js:1566
(anonymous function) @ test.js:70
(anonymous function) @ test.js:72
API 响应:https://gist.github.com/anonymous/c270f9ca9befa054ecef
我的主干代码:
(function ($) {
var Post = Backbone.Model.extend({
url: 'http://api.xxx.com/wp-json/posts',
defaults: {
id: null,
status: '',
title: ''
}
});
var PostCollection = Backbone.Collection.extend({
model: Post,
url: 'http://api.xxx.com/wp-json/posts',
sync: function (method, model, options) {
return Backbone.sync(method, model, options);
},
parse: function (response) {
if (response) {
var listSource = [];
_.each(response, function (element, index, list) {
listSource.push(new Post({
id: element.id,
title: element.title,
status: element.status
}));
});
return listSource;
} else {
alert('Error...');
return [];
}
}
});
var AppView = Backbone.View.extend({
el: '#app',
render: function () {
console.log(this.model.get('title'));
},
initialize: function () {
this.listenTo(PostCollection, 'add', this.render);
PostCollection.fetch();
}
});
new AppView();
})(jQuery);
我的 HTML:
<!doctype html>
<html lang="en" data-framework="backbonejs">
<head>
<meta charset="utf-8">
<title>FOO</title>
</head>
<body>
<div id="app"></div>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/underscore/underscore.js"></script>
<script src="node_modules/backbone/backbone.js"></script>
<script src="js/test.js"></script>
</body>
</html>
最佳答案
您需要实例化您的集合。您正在尝试对类进行监听和获取,而您应该在类的实例上执行此操作。
this.collection = new PostCollection();
this.listenTo(this.collection, 'add', this.render);
this.collection.fetch();
我无法检查您的代码,因为我没有端点,但看起来渲染函数中的 console.log 也无法工作。首先,您没有定义模型。我想您想打印刚刚添加的帖子的标题。一种方法是这样做:
render: function () {
console.log(this.collection.last().get('title'));
},
关于javascript - Backbone Collection 在 `add` 事件上运行方法并获取 : "TypeError: obj[implementation] is not a function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31255466/
我是一名优秀的程序员,十分优秀!