8
我的應用程序中有以下視圖。基本上我想在App.HouseListElemView的li被點擊時調用App.MapView中的show_house()。從另一個視圖調用查看功能 - Backbone
這樣做的最好方法是什麼?
App.HouseListElemView = Backbone.View.extend({
tagName: 'li',
events: {
'click': function() {
// call show_house in App.MapView
}
},
initialize: function() {
this.template = _.template($('#house-list-template').html());
this.render();
},
render: function() {
var html = this.template({model: this.model.toJSON()});
$(this.el).append(html);
},
});
App.MapView = Backbone.View.extend({
el: '.map',
events: {
'list_house_click': 'show_house',
},
initialize: function() {
this.map = new GMaps({
div: this.el,
lat: -12.043333,
lng: -77.028333,
});
App.houseCollection.bind('reset', this.populate_markers, this);
},
populate_markers: function(collection) {
_.each(collection.models, function(house) {
var html = 'hello'
this.map.addMarker({
lat: house.attributes.lat,
lng: house.attributes.lng,
infoWindow: {
content: html,
}
});
}, this);
},
show_house: function() {
console.log('show house');
}
});
美麗..謝謝 – AlexBrand
+1。請原諒我的無知,但這種方法/ appstate和擴展[Backbone.Events]之間的區別是什麼(http://lostechies.com/derickbailey/2012/04/03/revisiting-the-backbone-event-aggregator-lessons-瞭解/)傳統的PubSub? – TYRONEMICHAEL
@TyroneMichael:大部分容易持久。 PubSub只是路由信息並忘記它,模型會記住它,並且可以很容易地將狀態保存到服務器。 –