通过模板上大多数缺席的文档工作 - 无法使其工作。
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()等等......请帮助!!!
答案 0 :(得分:2)
@ ilija139是对的。 你需要定义data属性,即使它是空的。
data: {}
编辑:
此外,不需要compile
属性。它仅适用于Ext.Templates而不是XTemplates(根据文档)。在没有compile