私はPOSTリクエストでAPIを呼び出そうとしています。私のクロムインスペクタが私を示していますが、ネットワークタブでmethod='GET'
...ExtJS 4 - JsonStore + Postの問題点
は、ここに私のコードです:
Ext.define('TestItem', {
extend: 'Ext.data.Model',
fields: [
{name: 'id', type: 'int'},
{name: 'name', type: 'string'}
]
});
var testStore = Ext.create('Ext.data.JsonStore', {
model: 'TestItem',
autoLoad: true,
proxy: {
type: 'ajax',
url : '../path_to/api/',
method : 'POST',
reader: {
type: 'json',
root: 'data',
totalProperty: 'total'
}
},
baseParams: {
operation:'showall'
}
});
ので、Oはmethod='POST'
とAPIとパラメータoperation = showall
Googleのインスペクタショーを呼び出したいですネットワークタブの私には以下の情報が表示されます:
GET ../path_to/api/?_dc=1315297478131&page=1&start=0&limit=25 HTTP/1.1
なぜGETリクエストですか?
なぜlimit、start、dcのようなパラメータがありますか?
私は既に1000のチュートリアルを試して、一晩中グーグルグーグルで探そうとしました。
可能複製([extjs4店addesがURLでのparamsを取得] http://stackoverflow.com/questions/6925081/extjs4-store-addes-get-params-in-the-url/6926857#6926857 ) –