0

是否可以使用 Marionette 在布局中动态添加和删除区域?我的应用程序需要能够从布局中推送和弹出区域。这类似于当您深入研究项目的源代码时 GitHub 推送和弹出视图的方式。他们在呈现下一个视图时有幻灯片动画,然后在您退出时滑回。这个想法是我需要保留以前的观点。另一个类比是 UINavigationControllers 如何在 iOS 上工作。

或者也许我应该只定义一个能够动态处理添加和删除区域的自定义布局?

4

3 回答 3

1

我最终实现了一个容器视图来满足我的需求。它会像您在 Marionette 中所期望的那样清理事件参考。

https://github.com/ayoung/backbone-vs-marionette/blob/marionette/public/js/views/mainContainer.js

于 2012-10-22T21:23:45.617 回答
0

我不确定,但您可能对某些 html 的存在和该 html 的显示感到困惑?

我的意思是你可以制作一个 Items 的 CompositeView 并且一次只显示一个项目。然后使用 jQuery animate 或其他动画库在 CompositeView 的 Items 中移动。

于 2012-10-17T00:20:46.297 回答
0

对的,这是可能的。这是我使用的代码。

布局:

var Layout = Marionette.LayoutView.extend({
    initialize: function(options) {
        options = _.extend({ regionTag: 'div' }, options);
        this.mergeOptions(options, ['regionTag', 'regionName']);
    },

    template: false,

    regions: {},

    append: function(view) {
        var viewClass = 'dynamic-layout-' + this.regionName,
            viewCount = $('.' + viewClass).length + 1,
            viewId = this.regionName + '-view-' + viewCount,
            $el = $('<' + this.regionTag + '/>', {
                id: viewId,
                class: viewClass
            });
        this.$el.append($el);

        var region = Marionette.Region.extend({
            el: '#' + viewId
        });

        this.regionManager.addRegion(viewId, region);
        this.regionManager.get(viewId).show(view);
    },

    appendEmpty: function(id, className, tag) {
        tag = tag || 'div';
        var data = { id: id, className: className, tag: tag };
        var $el = Marionette.Renderer.render('#append-layout-template', data);
        this.$el.append($el);
        var region = Marionette.Region.extend({
            el: '#' + id 
        });
        this.regionManager.addRegion(id, region);   
    },

    customRemove: function(regionId) {
        this.regionManager.removeRegion(regionId);
    }
});

一个有用的模板:

<script type="text/template" id="append-layout-template">
    <<%= tag %> id='<%= id %>' class='<%= className %>'></<%= tag %>>
</script>

控制器:

var view = new SomeView();
// the region name will be a part of a unique id
var layout = new Layout({ regionName: 'myRegion' });
// add a dynamic region to the layout and a view to that region
layout.append(view);
// same as above (you have to name the id and class yourself)
var regionId = 'myRegionId';
layout.appendEmpty(regionId, 'someClassName', 'span');
layout.getRegion(regionId).show(view);
// remove a region
layout.customRemove(regionId);
于 2015-07-16T04:00:56.913 回答