如何更改/添加商店参数
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
存储声明
向代理添加参数并读取ajax存储
希望这有帮助。
Store declaration
Adding params to proxy and read ajax store
Hope this helps.
动态设置额外参数:
如果您想一次设置单个参数,可以使用以下方法
如果您想一次设置多个参数,可以使用以下方法
For dynamically setting extra parameters:
If you want to set single parameter at a time, you can use following
If you want to set multiple parameters at a time, you can use following
您可以尝试使用
extraParams
:You could try using
extraParams
:我建议您使用更优雅的解决方案,即 Sencha 方法:
希望这会有所帮助。
I suggest you a more elegant solution, the Sencha way to do that:
Hope this helps.