我試圖從組件初始化中訪問函數。 Sencha Touch/Ext.js新手,因此不確定範圍如何工作。我在'控制'中'旋轉'了聽衆,聽起來似乎很有效,但增加了。Sencha在父視圖中觸摸訪問方法
簡化代碼:
Ext.define('App.view.CreateChallenge', {
extend: 'Ext.Container',
fullscreen: true,
xtype: 'CreateChallenge',
config:{
items[
xtype: 'spinnerfield',
itemId: 'mySpin',
initialize:function(){
App.view.Challenge.doThis();
}
],
control:{
'#mySpin' : {
spin: 'doThis'
}
}
},
doThis:function(){
console.log('dooing this');
}
});
謝謝你,史蒂夫
感謝@Ye劉。感謝關於重寫初始化的提示。我一直試圖理解代表,控制者,參考並且一直在暈頭轉向嘗試處理它。上畫真的很有幫助,因爲我得到沒有發現錯誤。 – daxiang28