gpt4 book ai didi

javascript - Marionette.js - ItemView 获取父区域引用

转载 作者:行者123 更新时间:2023-11-29 19:47:42 27 4
gpt4 key购买 nike

Marionette.js Regions 有一个 close 事件,他们可以在其中判断他们自己是否关闭了其中一个 Regions 中的 subview 之一>.

我遇到的问题是,如果 subview 自身调用关闭,则此 close 事件不会触发。

请参阅以下内容:

var SubView = Marionette.ItemView.extend({

// suppose close is called from the region item itself...
internalClose: function() {
this.close();
},
});

var Layout = Marionette.Layout.extend({

template: '<div class="region1"></div>',

regions: {
region1: '.region1',
},

onRender: function() {

this.region1.show(new SubView());
// When the SubView calls its own close,
// region1 does not register a close event.

this.region1.on('close', function() {
// self destruct or something exciting...
});
},
});

如何让 ItemView 与 Layout 通信,并告诉它它已自行关闭(例如通过点击 ItemView 中的退出按钮或其他方式) .我需要 LayoutItemView 关闭时操作它自己的附加 DOM。

最佳答案

为区域的show 事件附加一个监听器并监听当前 View 的close 事件:

var region = this.region1;

region.on('show', function() {
region.currentView.on('close', function() {
// this message will cause the layout to self destruct...
});
// NOTE: You won't have to clean up this event listener since calling
// close on either the region or the view will do it for you.
});

您可以这样做来代替监听区域上的 close,因为这只是 currentView 关闭的信号。

关于javascript - Marionette.js - ItemView 获取父区域引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18840087/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com