如何更改/添加商店参数

发布于 2024-11-09 17:29:48 字数 404 浏览 0 评论 0原文

在 sencha-touch 上,这是我的商店声明

Ext.regStore('newsStore',  {
    model: 'News',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        url: '../news/list.form?format=json',
        reader: {
            type: 'json',
            root: ''
        }
    },                        
});

如何修改参数?我尝试过

params:{ format: 'json'}

但它不起作用!

On a sencha-touch, here's is my store declaration

Ext.regStore('newsStore',  {
    model: 'News',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        url: '../news/list.form?format=json',
        reader: {
            type: 'json',
            root: ''
        }
    },                        
});

How can I modify params? I tried

params:{ format: 'json'}

But its doesn't work!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

街道布景 2024-11-16 17:29:48

存储声明

new Ext.data.Store({
model:'prj.models.ContactInfo',
storeId:'contactInfoId',
proxy:{
    type:'ajax',
    url:'/GetContactInfoByID',
    reader:{
        type:'json'
    },
    extraParams:{
        format:'json'
    },
    listeners:{
        exception:function(proxy, response, orientation){
            console.error('Failure Notification', response.responseText);
            Ext.Msg.alert('Loading failed', response.statusText);
        }
    }
}   
});

向代理添加参数并读取ajax存储

prj.stores.contactInfoId.getProxy().extraParams.partyID = options.partyID;
prj.stores.contactInfoId.getProxy().extraParams.eventName = options.eventName;
prj.stores.contactInfoId.read();

希望这有帮助。

Store declaration

new Ext.data.Store({
model:'prj.models.ContactInfo',
storeId:'contactInfoId',
proxy:{
    type:'ajax',
    url:'/GetContactInfoByID',
    reader:{
        type:'json'
    },
    extraParams:{
        format:'json'
    },
    listeners:{
        exception:function(proxy, response, orientation){
            console.error('Failure Notification', response.responseText);
            Ext.Msg.alert('Loading failed', response.statusText);
        }
    }
}   
});

Adding params to proxy and read ajax store

prj.stores.contactInfoId.getProxy().extraParams.partyID = options.partyID;
prj.stores.contactInfoId.getProxy().extraParams.eventName = options.eventName;
prj.stores.contactInfoId.read();

Hope this helps.

装纯掩盖桑 2024-11-16 17:29:48

动态设置额外参数:

如果您想一次设置单个参数,可以使用以下方法

var proxy= myStore.getProxy();
proxy.setExtraParam('param1', 'value 1' );
proxy.setExtraParam('param2' , 'value 2' );
myStore.load();

如果您想一次设置多个参数,可以使用以下方法

proxy.setExtraParams({
     'param1':'value 1',
     'param2':'value 2'
});

For dynamically setting extra parameters:

If you want to set single parameter at a time, you can use following

var proxy= myStore.getProxy();
proxy.setExtraParam('param1', 'value 1' );
proxy.setExtraParam('param2' , 'value 2' );
myStore.load();

If you want to set multiple parameters at a time, you can use following

proxy.setExtraParams({
     'param1':'value 1',
     'param2':'value 2'
});
不…忘初心 2024-11-16 17:29:48

您可以尝试使用 extraParams

Ext.regStore('newsStore',  {
    model: 'News',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        url: '../news/list.form',
        reader: {
            type: 'json',
            root: ''
        },
        extraParams: {
            format: 'json'
        }
    },                        
});

You could try using extraParams:

Ext.regStore('newsStore',  {
    model: 'News',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        url: '../news/list.form',
        reader: {
            type: 'json',
            root: ''
        },
        extraParams: {
            format: 'json'
        }
    },                        
});
娜些时光,永不杰束 2024-11-16 17:29:48

我建议您使用更优雅的解决方案,即 Sencha 方法:

//Take your store
var store = Ext.StoreMgr.get('YOUR_STORE_ID');

//Apply the params
Ext.apply(store.getProxy().extraParams, {
    partyID: options.partyID,
    eventName: options.eventName
});

//Reload your store
store.contactInfoId.read();

希望这会有所帮助。

I suggest you a more elegant solution, the Sencha way to do that:

//Take your store
var store = Ext.StoreMgr.get('YOUR_STORE_ID');

//Apply the params
Ext.apply(store.getProxy().extraParams, {
    partyID: options.partyID,
    eventName: options.eventName
});

//Reload your store
store.contactInfoId.read();

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文