2011-10-19 116 views
0

因此,儘管模板上大部分都沒有文檔,但無法使其工作。與Sencha Touch 2一起使用XTempate 2

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()等等...請幫助!!!

+1

您是否嘗試過沒有html屬性並擁有數據屬性? – ilija139

回答

2

@ ilija139是正確的。 您需要定義數據屬性,即使它是空的。

data: {} 

編輯: 此外,不需要compile屬性。它僅適用於Ext.Templates而非XTemplates(根據文檔)。沒有compile