- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 collection.get 和 model.get 返回未定义有疑问。
这是我的初始化代码
initialize: function () {
this.collection = new productsCollection();
this.model = new productModel();
}
这是我的渲染代码
this.collection.fetch({
success: function (product) {
console.log(product);
$(that.el).html(_.template(productListTemplate, { products: product.models, _: _ }));
}
});
我的产品列表显示正常。当我点击每个产品时,我会看到一个可以更改名称的弹出窗口
我想在模型中获取设置的新名称并触发保存
但是我无法得到产品的型号这里是代码
$("#productName").val($(e.currentTarget).html());
var ID = $(e.currentTarget).data("id");
var item = this.collection.get(ID);
console.log("start..........");
console.log(item);
console.log(ID)
// console.log(this.collection);
console.log(this.model.get(item));
console.log("end..........");
$('.modal').modal('toggle');
我能够在控制台中获得正确的 id,但不能获得集合和模型
谁能帮忙提前谢谢
更新这是完整的 View 代码
function ($, _, Backbone, popupModal, productTab, productsCollection, productListTemplate, productModel) {
var productListView = Backbone.View.extend({
el: $("#page"),
initialize: function () {
this.collection = new productsCollection();
this.model = new productModel();
this.model.bind('change', this.loadResults, this);
},
render: function () {
this.loadResults();
},
loadResults: function () {
var that = this;
this.collection.fetch({
success: function (product) {
console.log(product);
$(that.el).html(_.template(productListTemplate, { products: product.models, _: _ }));
}
});
var modalWindow = $(".modal").modal({
show: false,
backdrop: true,
closeOnEscape: true
});
$('#createProduct').click(function (e) {
this.modalWindow.modal('show');
});
},
// This will simply listen for scroll events on the current el
events: {
"click #saveProduct": "saveProduct",
"click .productTabs": "productTabs",
"click .productDetails": "productDetails"
},
saveProduct: function () {
this.model.set({
Name: $('#productName').val()
});
this.model.save({ id: this.model.get('id') },
{
success: function (model, response) {
// console.log("success");
},
error: function (model, response) {
// console.log(response);
var errorMsg = JSON.parse(response.responseText);
$(".errorMessage").html('<div class="alert alert-error">' + errorMsg.Error + '</div>');
}
});
},
productTabs: function (e) {
e.preventDefault();
$(this).tab('show');
},
productDetails: function (e) {
e.preventDefault();
$("#productName").val($(e.currentTarget).html());
var ID = $(e.currentTarget).data("id");
var item = this.collection.get(ID);
console.log("start..........");
console.log(item);
console.log(ID)
// console.log(this.collection);
console.log(this.collection.models.get(item));
console.log("end..........");
$('.modal').modal('toggle');
}
});
return new productListView;
});
更新回复
this.collection
b.hasOwnProperty.e
_byCid: Object
_byId: Object
_onModelEvent: function () { [native code] }
_removeReference: function () { [native code] }
length: 2
models: Array[2]
0: b.hasOwnProperty.e
1: b.hasOwnProperty.e
length: 2
__proto__: Array[0]
__proto__: s
它有 2 个型号,我的列表也有 2 个产品
this.model
_callbacks: Object
_changed: false
_changing: false
_escapedAttributes: Object
_previousAttributes: Object
attributes: Object
ID: ""
Name: ""
hRef: ""
__proto__: Object
cid: "c2"
__proto__: s
属性为空
这让我关注
cid: "view1"
collection: b.hasOwnProperty.e
_byCid: Object
_byId: Object
_onModelEvent: function () { [native code] }
_removeReference: function () { [native code] }
length: 2
models: Array[2]
__proto__: s
model: b.hasOwnProperty.e
_callbacks: Object
_changed: false
_changing: false
_escapedAttributes: Object
_previousAttributes: Object
attributes: Object
cid: "c2"
__proto__: s
options: Object
__proto__: s
更新 这是我扩展收藏时看到的内容
b.hasOwnProperty.e
_byCid: Object
_byId: Object
_onModelEvent: function () { [native code] }
_removeReference: function () { [native code] }
length: 2
models: Array[2]
0: b.hasOwnProperty.e
_callbacks: Object
_changed: false
_changing: false
_escapedAttributes: Object
_previousAttributes: Object
attributes: Object
ID: "7e0c94fc-7c16-45c9-84a9-a0690103b946"
Name: "dsa"
hRef: "Product/dsa"
__proto__: Object
cid: "c3"
collection: b.hasOwnProperty.e
__proto__: s
1: b.hasOwnProperty.e
length: 2
__proto__: Array[0]
__proto__: s
最佳答案
问题是您必须将所有将由 DOM 事件调用的函数绑定(bind)到您的 View 实例:
因此将这一行添加到您的initialize
方法中:
_.bindAll(this, "saveProduct", "productTabs", "productDetails")
否则函数中的 this
将是全局 window
对象,而不是 View 的实例。
关于javascript - Collection.get 在 backbone.js 中返回未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10937031/
是否有带有索引的.collect?我想做这样的事情: def myList = [ [position: 0, name: 'Bob'], [position: 0, name: 'J
我创建了一个 Collection 类,它扩展了 ArrayList 以添加一些有用的方法。它看起来像这样: public class Collection extends ArrayList {
我知道如果我有元素,我想得到 List/Set/Map 我可以调用这个元素: Collections.singleton()/Collections.singletonList()/Collectio
我刚刚在我的 pom 文件中看到 Apache commons-collections 有两个不同的组 ID: commons-collections commons-collect
我们可以对所有 Collections 类型的对象(如 Set 和 List)使用 Collections.synchronizedCollection(Collection c),这就是为什么我们有
我有List>我想让它把上一个集合中的所有人复制到List收藏。 我是这样做的: var People = new List>{ new List{...},... };
我想做的是使用良好的旧循环非常简单。 假设我有一个包含 B 列表的对象 A。 public class A { public List myListOfB; } 在其他一些方法中,我有一个 As
在 Capgemini 的采访中,我被问到一个我无法回答的问题。所有集合类和接口(interface)共有的那些方法是什么? 最佳答案 所有 java 对象类(包括所有集合)都派生自名为 Object
我有一系列存储估计信息的数据库表。当设置某些边界时,我试图从所有数据库表中返回所有数据。 收藏 $estimateItems = new Collection(); $esti
为什么 Haskell 实现如此专注于链表? 例如,我知道 Data.Sequence 效率更高 大多数列表操作(cons 操作除外),并且被大量使用; 但是,从语法上讲,它“几乎不受支持”。 Has
我试图简单地将我在 PHP 中请求的内容返回到 JSON。我的问题是每个库存尚未完成。事实上,它是“渲染”,但“this.collection.models”尚未完成,因为请求尚未完成。 我应该如何解
本质上,作为Powershell脚本的一部分,我需要实现广度优先搜索。因此,我需要队列,并且认为System.Collections.Queue与其他任何队列一样好。但是,当我从队列中取出一个对象时,
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是 on-topic用于堆栈溢出。 已关闭10 年前。 Improve t
嗨,我不明白为什么这不起作用? Notifications.update({'userId':Meteor.userId(), 'notifyUserId':notifyFriendId}, {$se
假设我有一个闭包: def increment = {value, step -> value + step } 现在我想遍历我的整数集合的每个项目,用 5 递增,并将新元素保存到一个新集合中:
使用逐页 View 时,我的 plone 集合文件夹未显示所有项目。基本上我有 9 页包含元素,但第 6 - 8 页显示的内容完全相同。因此,并非所有项目都会显示,即使项目总数对应于应该在集合中的元素
private Map> map ,其中 ProgramCourse 是我的项目中的域类,上面的 map 是我运行项目时域类 Program 的字段以下异常即将到来。 Use of @OneToMan
三者的主要区别是什么?现在,我想分别使用字符串/字符串创建一个键/值对。这三个似乎都有我可以使用的选项。 编辑:我只想创建一个简单的哈希表 - 没什么特别复杂的。 最佳答案 通用集合几乎完全取代了基础
我正在为 NodeJs 使用 mongodb 驱动程序,其中有 3 个方法: 1) db.collection.insert 2) 数据库.collection.insertOne 3) db.col
我有一个集合,我正在尝试使用 Distinct 方法删除重复项。 public static Collection imagePlaylist imagePlaylist = imagePlaylis
我是一名优秀的程序员,十分优秀!