Home >Web Front-end >JS Tutorial >Extjs4.0 sets the request method for passing parameters in Ext.data.Store (default is GET)_extjs

Extjs4.0 sets the request method for passing parameters in Ext.data.Store (default is GET)_extjs

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 17:38:291199browse
Copy code The code is as follows:

var Store = Ext.create('Ext.data.Store', {
pageSize: pageSize,
model: 'Ext.data.Model name',
autoLoad: false,
proxy: {
type: 'ajax',
url: ' Request path',
getMethod: function(){ return 'POST'; },//Highlight, set the request method, the default is GET
reader: {
type: 'json',
root : 'Data',
totalProperty: 'totalCount'
}
},
listeners: {
'beforeload': function (store, op, options) {
var params = {
//Parameters
};
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