GET メソッドを使用すると、この応答を簡単に取得できます。しかし、POSTメソッドがわかりません。
Ext.data.JsonP.request({
url: 'http://otherdomain/test_json_post',
method: 'POST',
type:'jsonp',
scope: this,
callbackkey: 'callback',
success: function(result) {
console.log(result);
//Your success function here...
}
});
何を間違えたの?