L'appel de la fonction de visualisation à partir d'un autre point de vue - Dorsale

J'ai les vues suivantes dans mon application. Fondamentalement, je veux appeler show_house() App.MapView lorsque le li de l'Application.HouseListElemView est cliqué.

Quelle serait la meilleure façon de le faire?

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');
}
});

OriginalL'auteur AlexBrand | 2012-06-14