1.
Ext.data.TreeStore 中,若设置了
folderSort: true
则在Request的QueryString中会多出:
{"property":"leaf","direction":"ASC"}
2.
Ext.data.Proxy.proxy 的actionMethods用来定义提交时是 Post or Get
如:
proxy: {
type: 'ajax',
actionMethods: { read: 'POST'}
… …
}