0
我想在應用程序級別創建它時將自定義參數傳遞給視圖,但它不起作用。我已經閱讀了sencha文檔中的類系統,並在Stack Overflow中解決了相關問題,但這並沒有幫助解決我的問題。傳遞值以在創建時查看
Ext.define('ImgPanel', {
extend: 'Ext.Panel',
config: {
flex: 5,
appName: '', // self-defined
},
var imgPanel = Ext.create('ImgPanel', {appName: 'city'}); alert(imgPanel.getAppName()); // does not show the 'city' that I'm expected
謝謝,似乎它的原因,我錯了。 – smalliao