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

WBOY
Release: 2016-05-16 17:38:29
Original
1171 people have browsed it
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);
}
}
});
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template