1

我有一个Ext.Component有观点的习惯XTemplates。我也确实需要控制器视图之外的一些模板。

是否可以在 a 的函数中引用静态成员XTemplate?还是有其他更好的方法???

像这样的东西:

Ext.define('app.view.ApplicationHeader', {
    extend: 'Ext.Component',
    name: 'app-header',
    xtype: 'app-header',

    height: 67,
    margin: 0,

    statics: {
        mainIconTpl: new Ext.XTemplate('someTemplate'),

        navigationItemsTpl: new Ext.XTemplate( 'anotherTemplate'),

        userInfoTpl: new Ext.XTemplate('userTemplate')
    },

    html: new Ext.XTemplate('... {[ this.renderMainIcons() ]} {[ this.renderUserInfo() ]} ...',
            '... {[ this.renderNavigationBarItems() ]} ...',
            {
                me: this,
                renderMainIcons: function () {
                    return view.static.mainIconTpl.apply(MR.Sitemap.Items);
                },
                renderUserInfo: function () {
                    return view.static.userInfoTpl.apply();
                },
                renderNavigationBarItems: function () {
                    return view.static.navigationItemsTpl.apply();
                }
            }).apply()   
});

我也不知道如何应用属于视图成员的子模板。我宣布他们是全球性的,知道我真的不喜欢做什么。

请!

4

2 回答 2

1

根据链接,您应该可以将其直接放在您的 XTemplate 中。不需要静力学

{[ MyApp.tpls.someOtherTpl.apply(values) ]}

嵌套列表中的多个模板

您也可以尝试将所有这些 XTemplate 放入 initComponent 中,因为在初始组件渲染后您没有为 XTemplate 注入任何值。apply() 将只返回一个 HTML 片段,该片段应该能够附加到 XTemplate 中的任何位置。

如果您尝试将逻辑或条件 tpl 运算符,即 <tpl for="parent.someVar">...</tpl> 放在任何子 XTemplates 中,那么这是另一个问题,所以这完全取决于您是什么试图完成。

Ext.define('app.view.ApplicationHeader', {
    extend: 'Ext.Component',
    name: 'app-header',
    xtype: 'app-header',

    height: 67,
    margin: 0,

    initComponent: function() {
        var me = this,
        me.mainIconTpl = new Ext.XTemplate('someTemplate'),
        me.navigationItemsTpl = new Ext.XTemplate( 'anotherTemplate'),
        me.userInfoTpl = new Ext.XTemplate('userTemplate');

        me.tpl = new Ext.XTemplate(
            '...', me.mainIconTpl.apply(MR.Sitemap.Items), 
            '...', me.navigationItemsTpl.apply(someValues), 
            '...', me.userinfoTpl.apply(someValues), 
            '...'
        );

        Ext.apply(me, {
             html: me.tpl
        });

        me.callParent();
    }
});
于 2013-06-21T17:18:21.337 回答
1

您的代码不起作用,因为在调用类定义(即方法)之前apply调用了主模板的方法。define

您可以在 post-create 函数中创建使用类的其他静态成员的静态模板(请参阅define方法的最后一个参数)。

然后为了使模板可用,我将覆盖该initComponent方法并在html那里设置属性。

Ext.define('app.view.ApplicationHeader', {
    extend: 'Ext.Component',
    name: 'app-header',
    xtype: 'app-header',

    height: 67,
    margin: 0,

    statics: {
        mainIconTpl: new Ext.XTemplate('someTemplate'),
        navigationItemsTpl: new Ext.XTemplate('anotherTemplate'),
        userInfoTpl: new Ext.XTemplate('userTemplate')
    },

    initComponent: function() {

        // Here, your statics are available, and you're in the scope of your
        // class *instance*
        this.html = this.self.viewTemplate.apply();

        this.callParent(arguments);
    }

}, function() {

    // In the post create function, this is the class constructor
    // (i.e. app.view.ApplicationHeader)
    var cls = this;

    // In fact, you could also create your sub templates here if you prefer
    // e.g.
    // cls.useInfoTpl = new Ext.XTemplate('userTemplate')

    // So, viewTemplate will be a static property of the class
    cls.viewTemplate = new Ext.XTemplate('... {[ this.renderMainIcons() ]} {[ this.renderUserInfo() ]} ...',
        '... {[ this.renderNavigationBarItems() ]} ...', {
        renderMainIcons: function() {
            return cls.mainIconTpl.apply();
        },
        renderUserInfo: function() {
            return cls.userInfoTpl.apply();
        },
        renderNavigationBarItems: function() {
            return cls.navigationItemsTpl.apply();
        }
    });

});
于 2013-06-24T08:39:55.380 回答