我有一个集合,我正在尝试共享有关在两个不同视图之间选择的当前模型的信息
--> 简单地说,我希望能够从另一个视图访问在一个视图中选择的模型并更改/分配模型的属性
第一个视图定义为:
App.Views.Person = Backbone.View.extend({
tagName: 'a',
template: template('personTemplate'),
initialize: function(){
this.model.on('change', this.render, this);
this.model.on('destroy', this.remove, this);
},
render: function() {
this.$el.html( this.template(this.model.toJSON()) );
this.input = this.$('.view');
return this;
},
第二个视图定义为:
App.Views.App = Backbone.View.extend({
el: 'html',
initialize: function(){
_.bindAll(this,"render");
},
render: function() {
return this;
},
我用以下内容创建了我的观点
addPersonView = new App.Views.AddPerson({ collection: peopleCollection });
appView = new App.Views.App({ model: person, collection: peopleCollection });
如何使在第二个视图中选择的模型与从我的集合中提取的第一个视图中的模型相同->例如,当我在底部视图的输入框中键入内容时,我想要能够使用:this.set.model({name:title})
并为此设置在我的顶视图中选择的元素(与模型关联)的模型属性,但使用this.set.model
不是选择在我的第一个视图中选择的正确模型
供进一步参考和混淆:我的模型正在添加到我的 PeopleView 中,其中包含我从数组加载的以下代码;
App.Views.People = Backbone.View.extend({
// tagName: '',
initialize: function() {
var i = 1;
while(i < size)
{
var person = new App.Models.Person({ url: jsArray[i] });// creating a new person object..
this.collection.add(person);
i++
}
this.collection.on('add', this.addOne, this);
console.log(jsArray[1]);
// listeners/anouncers for the collection on add..
},
// refactored render method...
render: function() {
this.collection.each(this.addOne, this);
return this;
},
// called from render method of collection view..
addOne: function(person) {
var personView = new App.Views.Person({ model: person, vent: vent });
this.$el.append(personView.render().el);
}
});