Home  >  Article  >  Web Front-end  >  Extjs4.0设置Ext.data.Store传参的请求方式(默认为GET)_extjs

Extjs4.0设置Ext.data.Store传参的请求方式(默认为GET)_extjs

WBOY
WBOYOriginal
2016-05-16 17:38:291091browse
复制代码 代码如下:

var Store = Ext.create('Ext.data.Store', {
pageSize: pageSize,
model: 'Ext.data.Model名称',
autoLoad: false,
proxy: {
type: 'ajax',
url: '请求路径',
getMethod: function(){ return 'POST'; },//亮点,设置请求方式,默认为GET
reader: {
type: 'json',
root: 'Data',
totalProperty: 'totalCount'
}
},
listeners: {
'beforeload': function (store, op, options) {
var params = {
//参数
};
Ext.apply(store.proxy.extraParams, params);
}
}
});
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn