Ext6中从Component如何找到Store和Model

简介: 这个问题挺傻的,也很基础。View部分的代码 Ext.define('RUKU.view.hr.HRUserList', { extend: 'Ext.grid.Panel', xtype: 'hruserlist', // 引入store requires:[ 'RUKU.

这个问题挺傻的,也很基础。
View部分的代码

Ext.define('RUKU.view.hr.HRUserList', {
    extend: 'Ext.grid.Panel',
    xtype: 'hruserlist',
    // 引入store
    requires:[
        'RUKU.store.hr.HRUserListStore',
        'RUKU.controller.hr.HRUserListController',
        'RUKU.model.hr.HRUserListModel'
    ],
    controller: 'hulc',
    // 关联store
    store:{
     type: 'huls'
    },
    onShow:function(){
    //获取store
    Ext.getStore('Ingram14').load();
    
    }

.....................
});

Store部分的代码:

Ext.define('RUKU.store.hr.HRUserListStore', {
    extend: 'Ext.data.Store',
    alias: 'store.huls',
    //这个字段storeId是关键,通过它,View可以获取Store
    storeId: 'Ingram14',
    model: "RUKU.model.hr.HRUserListModel",
    pageSize:20,
    
    proxy: {
            type: 'ajax',
            url: 'hr/userlist.html',
            reader: {
                    type: 'json',
                    rootProperty: 'data'
            }
    }
         
});

_
从Ext4开始就有了这个config,也就是属性。

同样的Model也具有同样的 config
_
如果去看看extjs6的案例代码,你也能看到它的用法(事实上这个案例我很推荐哦)
http://examples.sencha.com/extjs/6.2.0/examples/classic/grid/filtered-buffered-store.js
_

但是想想,从Component中直接获取Model,有什么用呢?哈哈

目录
相关文章
|
JavaScript 前端开发
为什么import store from ‘./store‘和 ‘./store/index‘一样
为什么import store from ‘./store‘和 ‘./store/index‘一样
151 0
|
JavaScript
Vue中遇到的Bug( Component name “School“ should always be multi-word vue/multi-word-component-names)
Vue中遇到的Bug( Component name “School“ should always be multi-word vue/multi-word-component-names)
125 0
thinkphp报错Call to undefined method app\index\controller\Index::fetch()
thinkphp报错Call to undefined method app\index\controller\Index::fetch()
167 0
两步教你用Vue3+TS实现input组件的v-model属性
使用过一些ui框架的同学应该都知道input里面的值有一个绑定的v-model属性,这篇文章教大家如何给自己定义的input组件写一个v-model的绑定属性 第一步
630 0
两步教你用Vue3+TS实现input组件的v-model属性
Pinia的Store运行时定义ID
Pinia的Store运行时定义ID
523 0
App Store 类别定义
报刊杂志 提供自动续期订阅报刊杂志内容的 App。如果您采用分期发行的策略交付内容,或为印刷版期刊提供交互式版本,那么您应当选择“报刊杂志”。 例如:报纸、杂志、其他定期期刊。
1856 0