私はSenchaでコントローラーを定義しました。これには、ビューを参照するrefs属性が含まれていますが、自動生成された「get」関数を呼び出して、refs属性に基づいてビューを取得すると、未定義が返されます。これが私の例です:
app / controller/Locals.jsに次のコントローラーがあります。
Ext.define('MobileUnion.controller.Locals', {
extend: 'Ext.app.Controller',
// Base class methods.
launch: function () {
this.callParent(arguments);
},
init: function () {
this.callParent(arguments);
},
config: {
refs: {
localsEditorView: 'localseditorview',
},
control: {
localsEditorView: {}
}
},
slideUpTransition: { type: 'cover', direction: 'up' },
onEditLocalsCommand: function() {
this.activateLocalsEditor();
},
activateLocalsEditor: function() {
var localsEditorView = this.getLocalsEditorView();
console.log(localsEditorView); // Returns "undefined" to console.
Ext.Viewport.animateActiveItem(localsEditorView, this.slideUpTransition);
}
});
app / views/LocalsEditor.jsに次のビューがあります。
Ext.define('MobileUnion.view.LocalsEditor', {
extend: 'Ext.Panel',
alias: 'widget.localseditorview',
config: {
html: 'This is the new view which should show up on top!'
},
});
したがって、上記の例ではthis.getLocalsEditorView()
、コントローラー内から呼び出すと、refs属性をとして設定し、localsEditorView: 'localseditorview'
MobileUnion.view.LocalsEditorにエイリアスを含めるように定義したにもかかわらず、「未定義」になりwidget.localseditorview
ます。これをするとき、私は私が眺めを得るべきであるように感じます。
ちなみに、views
app.jsの属性でビューを定義したので、そうではありません。
詳細情報:Webkitコンソールに実際のエラーが返されることはありません。私のコントローラーで上記の呼び出しを行うだけconsole.log()
で、ビューオブジェクトではなく、未定義が返されます。
質問:この関数が未定義ではなくビューを返すようにするには、何をする必要がありますか?どんな助けでもいただければ幸いです。私はそれが単なるタイプミスではないことを確認するために調べました。そうではないようです。