我正在开发以下功能:当用户单击页面上的照片时,会modalView
出现一个模式,其中包含该项目的更多详细信息。在modalView
中,用户可以单击另一个项目的照片,这将关闭第一个模态窗口modalView
并打开一个新的模态窗口modalView
,其中包含下一个项目的完整详细信息。s的打开和关闭modalView
由路由器函数处理。
(用户可能会遇到闪烁,但这是另一个问题)
问题:当用户点击其中另一个项目的照片时modalView
,showModal()
会导致当前modalView
关闭并且URL更新为下一个项目的URL /product/1234
,但是新的modalView
没有出现!使用console.log()
调试,我发现第一个modalView
关闭,第二个modalView
打开然后关闭!
发生了什么,如何解决?
路由器
var AppRouter = Backbone.Router.extend({
routes: {,
'product/:id': 'showModal'
},
showModal: function(id) {
// Close any existing ModalView
if(app.modalView) {
app.modalView.closeModal();
console.log('closing');
}
// Create new ModalView
app.modalView = new ModalView({ model: new Product({id:id}) });
console.log('creating new');
}
});
app = new AppRouter();
Backbone.history.start({
pushState: true,
root: '/'
});
看法
ModalView = Backbone.View.extend({
el: $('#modal'),
template: _.template( $('#tpl_modal').html() ),
events: {
'click .more_photo': 'showModal',
},
initialize: function() {
// Update Model with Full details
var self = this;
this.model.fetch({
data: {post_id: self.model.get('id')},
processData: true,
success: function() {
self.render();
});
},
render: function() {
$(this.el).show().append( this.template( this.model.toJSON( this.model ) ) );
},
closeModal: function() {
// Restore scrollbars
$(this.el).css('overflow-y', 'auto');
$('body').removeClass('noscroll');
// Close modal and remove contents
$(this.el).fadeOut();
$(this.el).empty();
},
showModal: function() {
// Update URL & Trigger Router function `showModal`
app.navigate('/product/' + this.model.get('id'), {trigger:true});
}
});
Console.log 输出
creating new
<----clicks on another photo
closing
creating new