在Sencha Touch 2中动态设置面板属性

时间:2014-06-10 14:22:52

标签: sencha-touch-2

在Sencha touch 2中,如何使用函数设置属性的值(如html)?

示例:

    {
        xtype: 'panel',
        html: function () {
            if (conditionA) return 2
            return 4
        }
    }

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

使用自动执行的匿名函数:

{
    xtype: 'panel',
    html: (function () {
        if (0) {
            return 'lol';
        }
        return 'rofl';
    })()
}