我在骨干网中有以下模式/集合/视图设置。
var Card = {};
//card model
Card.Model = Backbone.Model.extend();
//collection
Card.Collection = Backbone.Collection.extend({
url: '/api/cards',
model: Card.Model
});
//column view
Card.MainView = Backbone.View.extend({
className: 'column',
append: function(model) {
var view = Card.View.extend({
model : model,
attributes: { cid : model.cid }
});
var v = new view();
this.$el.append(v.el);
},
initialize: function() {
var self = this;
_.bindAll(this, "sortable");
this.collection.fetch({
success: function() {
self.render();
}
});
},
render: function() {
var self = this;
for(var i = 0; i < this.columns.length; i++) {
var col = this.columns[i];
var column = Card.ColumnView.extend({
data: col,
cards: self.collection.where({ position : col.position })
});
var col = new column();
this.$el.append(col.el);
}
this.sortable();
},
sortable: function() {
var self = this;
$(this.el).find('.card-container').sortable({
connectWith: '.card-container',
receive: _.bind(function(event, ui) {
var cid = $(ui.item).attr('cid');
var card = self.collection.get(cid);
//console.log(self.collection.last());
console.log('cid', self.collection.get(cid));
console.log('index 1', self.collection.at(1));
console.log('last', self.collection.last());
console.log('collection', self.collection);
}, this)
});
}
});
当我尝试从sortable
函数中的MainView集合中获取模型时,它不会通过CID记录模型。我得到以下输出。
cid undefined CardMetaCollection.js:97
index 1 d {collection: d, attributes: Object, _escapedAttributes: Object, cid: "c2", changed: Object…} CardMetaCollection.js:98
last d {collection: d, attributes: Object, _escapedAttributes: Object, cid: "c249", changed: Object…} CardMetaCollection.js:99
collection d {length: 249, models: Array[249], _byId: Object, _byCid: Object, url: "/api/cards"…}
我已经尝试登录fetch方法的success
回调但我仍然得到未定义的返回...每个模型都有自己的cid。非常感谢任何帮助。
答案 0 :(得分:3)
.get()
方法接受id
或cid
。 id
可以直接传递给get
,但cid
必须作为对象文字传递。实际上,您也可以在对象文字中传递id
并使代码保持一致。
var cid = ...;
var card = self.collection.get({ cid: cid });
var id = ...;
var card = self.collection.get({ id: id });
var id = ...;
var card = self.collection.get(id);
您可以查看backbone.js中的.get()
实现。
更新:仅cid
可以传递给Backbone 0.9.9或更高版本中的.get()
方法(请参阅implementation in the current 1.3.3)。
var cid = ...;
var card = self.collection.get(cid);
在您的情况下,问题可能出在属性&#34; cid&#34;卡片元素上缺少,Ben写道。您声明了.append()
方法将此属性添加到新元素,但您在new column()
方法中调用了.render()
而不是它。似乎column
视图未添加该属性,因为您的日志记录会找到它undefined
。
注意:请考虑使用有效的自定义HTML属性名称,例如&#34; data-cid&#34;而不仅仅是&#34; cid&#34;,例如。
答案 1 :(得分:0)
cid
传递给self.collection.get(cid)
的是任何一个模型的id,因为collection.get
期望模型id作为参数。您可能还想为此目的记录cid
值。答案 2 :(得分:0)
cid使用当你将不同的模型推送到一个集合并且休息没有响应所有请求的唯一ID或个人或者REST不返回ID attr或者我们想要创建假模型而没有休息并将其推送到集合
var banned = app.request('rest:banList');
var whiteIp = app.request("rest:inviteList");
var whiteGroup = app.request("rest:groupList");
$.when(banned, whiteIp, whiteGroup).done(function (bannedList, whiteIpList, whiteGroupList) {
debugger
var arr = new Backbone.Collection();
arr.add(bannedList);
arr.add(whiteIpList);
arr.add(whiteGroupList);
});
define(["app"], function (app) {
var API = {
getWho: function (data) {
var whois = new Backbone.Model();
whois.url = '/admin/whois';
whois.cid = 'ban';
var defer = $.Deferred();
whois.fetch({
type: 'GET',
data: data,
success: function(data){
debugger
defer.resolve(data);
},
error: function(data){
defer.reject(data);
}
});
return defer.promise();
}
};
app.reqres.setHandler("rest:getWho", function (data) {
return API.getWho(data);
});
});