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‘一样
148 0
|
4月前
vue2 自定义 v-model (model选项的使用)
vue2 自定义 v-model (model选项的使用)
679 1
Spartacus 2211 无法在文件夹下使用 ng g component 创建新的 Component
Spartacus 2211 无法在文件夹下使用 ng g component 创建新的 Component
Spartacus 2211 无法在文件夹下使用 ng g component 创建新的 Component
|
6月前
|
小程序 API 定位技术
【uni-app报错】选择地址:fail the api need to be declared in the requiredPrivateInfos field in app/ext.json
【uni-app报错】选择地址:fail the api need to be declared in the requiredPrivateInfos field in app/ext.json
550 0
|
编译器
Spartacus 4.3.x 版本导入 Cart 到 App Module 构造函数的错误消息
Spartacus 4.3.x 版本导入 Cart 到 App Module 构造函数的错误消息
两步教你用Vue3+TS实现input组件的v-model属性
使用过一些ui框架的同学应该都知道input里面的值有一个绑定的v-model属性,这篇文章教大家如何给自己定义的input组件写一个v-model的绑定属性 第一步
611 0
两步教你用Vue3+TS实现input组件的v-model属性
SAP Spartacus lazy load module 里包含了被其他 Component 静态引用的组件该怎么办
SAP Spartacus lazy load module 里包含了被其他 Component 静态引用的组件该怎么办
107 0
SAP Spartacus lazy load module 里包含了被其他 Component 静态引用的组件该怎么办
SAP Spartacus lazy load 的一个例子 - User Module
SAP Spartacus lazy load 的一个例子 - User Module
SAP Spartacus lazy load 的一个例子 - User Module