Extjs 4 Store 관련 - 기본파라미터 적용. - extraParams


extraParams 
스토어에서 autoLoad = true 설정 된 경우

페이지 로딩 되면 자동으로 호출하게 되는데
조회 할 때  파라미터 값을 적용 하게 할 경우 아래와 같이 extraParams  를 설정 하면 된다.



Ext.define('project.store.MyStore, {
extend: 'project.store.BaseStore',

model: 'project.model.MyStore',

// autoLoad: false,

proxy: {
api : {
create: contextPath + '/my/add.json',
read: contextPath + '/my/list.json',
update: contextPath + '/my/update.json',
destroy: contextPath + '/my/delete.json'
},
extraParams  : {
'myid': 'myid',
'myAuth': login.myAuth
}
}/*
    listeners: {
        beforeload: function(store, operation, options){
            console.log( operation )
        }
    }*/
});

댓글

가장 많이 본 글