- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个使用 Backbone.js/Marionette 的应用程序。目前,当我尝试从远程 API 获取我的集合时,出现以下错误:
Uncaught TypeError: undefined is not a function backbone.js:225
Events.(anonymous function) backbone.js:225
e.CollectionView.e.View.extend._initialEvents backbone.marionette.js:1585
e.CollectionView.e.View.extend.constructor backbone.marionette.js:1548
child backbone.js:1566
List.Controller.listAttractions list_controller.js:9
(anonymous function) app.js:11
triggerEvents backbone.js:207
Backbone.Events.trigger backbone.js:148
e.triggerMethod.d backbone.marionette.js:561
c.extend.start backbone.marionette.js:2461
(anonymous function)
我跟踪了堆栈跟踪,发现问题似乎源于 list_controller.js:9
。 list_controller.js
的代码是:
Manager.module("AttractionsApp.List", function(List, Manager, Backbone, Marionette, $, _) {
List.Controller = {
listAttractions: function() {
var attractions = Manager.request("attraction:entities");
console.log(new Manager.AttractionsApp.List.Attractions());
var attractionsListView = new Manager.AttractionsApp.List.Attractions({
collection: attractions
});
attractionsListView.on("itemview:attraction:show", function(childView, model) {
Manager.AttractionsApp.Show.Controller.showAttraction(model);
});
Manager.attractionsRegion.show(attractionsListView);
}
}
});
问题似乎与:
var attractionsListView = new Manager.AttractionsApp.List.Attractions({
collection: attractions
});
如果我注释掉集合:景点
,错误就会消失。知道这里发生了什么吗?
编辑景点实体文件:
Manager.module("Entities", function(Entities, Manager, Backbone, Marionette, $, _) {
Entities.Attraction = Backbone.Model.extend({});
Entities.Attractions = Backbone.Collection.extend({
url: '/api/attraction/',
model: Entities.Attraction,
});
var attractions;
var API = {
getAttractionEntities: function() {
var attractions = new Entities.Attractions();
var defer = $.Deferred();
attractions.fetch({
success: function(collection, response) {
console.log(collection);
defer.resolve(collection);
},
error: function(collection, response) {
console.log("ERROR");
},
});
return defer.promise();
}
};
Manager.reqres.setHandler("attraction:entities", function() {
return API.getAttractionEntities();
});
});
最佳答案
我认为问题可能是 API.getAttractionEntities()
返回的是一个 promise ,而不是 Marionette 在 1585
行所期望的实际集合。
尝试使用 attractions.done()
(在下面的示例中我将其重命名为 attractionsPromise.done()
)来包装 的创建和管理景点 ListView
,如下所示:
Manager.module("AttractionsApp.List", function(List, Manager, Backbone, Marionette, $, _) {
List.Controller = {
listAttractions: function() {
var attractionsPromise = Manager.request("attraction:entities");
console.log(new Manager.AttractionsApp.List.Attractions());
attractionsPromise.done(function(attractions) {
var attractionsListView = new Manager.AttractionsApp.List.Attractions({
collection: attractions
});
attractionsListView.on("itemview:attraction:show", function(childView, model) {
Manager.AttractionsApp.Show.Controller.showAttraction(model);
});
Manager.attractionsRegion.show(attractionsListView);
});
}
}
});
关于javascript - Backbone : undefined is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23233383/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!