0

因此,尽管模板上大多数不存在的文档都在工作-无法使其正常工作。

Ext.define('MyAPp.view.Login', {
    extend: 'Ext.Component',
    xtype: 'welcomeLogin',
    config: {
        html: 'This shows',
        tpl:   Ext.create ('Ext.XTemplate', '<div>Please show something</div>', {
            compiled: true
       })
     }

});

为什么现在显示模板内容?我已经尝试不断添加apply(),applyTemplate()......请帮助!

4

1 回答 1

2

@ilija139 是对的。您需要定义数据属性,即使它是空的。

data: {}

编辑:此外,compile不需要该属性。它仅适用于 Ext.Templates 而不是 XTemplates(根据文档)。对我来说同样有效compile

于 2011-11-01T13:09:54.610 回答