1

ログイン要求が成功した後に呼び出されるハンドラーonLogin()を備えたコントローラーがあります。

Ext.define('AddressBook.controller.Application', {
extend: 'Ext.app.Controller',
...
onLogin: function(form, record) {
    var editButton = this.getEditButton();

    if (!this.showContact) {
        this.showContact = Ext.create('AddressBook.view.contact.Show');
    }

    //how to get this store?
    var store = getContactsStore();
    //how to get the data in the store or should I get the model?
    this.showContacts.updateDataProvider(store.array);

    // Push the show contact view into the navigation view
    this.getMain().push(this.showContact);
},
...
}
4

1 に答える 1

3

このコードを試してください

Ext.getStore('storeId')

それはあなたに店の目的を与えるでしょう

于 2012-09-24T10:21:47.177 に答える