我正在尝试让我的商店调用我的servlet的post方法但它仍然调用get,即使我将actionMethods设置为post
Ext.define("Shows.store.Shows", {
extend: "Ext.data.JsonStore",
requires: "Ext.data.proxy.LocalStorage",
config: {
model: "Shows.model.Show",
proxy: {
type: 'scripttag',
actionMethods: {
create : 'POST',
read : 'POST', // by default GET
update : 'POST',
destroy: 'POST'
},
url: 'http://localhost:8080/GetShowsServlet',
reader: {
type: 'json',
successProperty: 'success'
},
}
}
});
答案 0 :(得分:2)
您不能将POST与JSONP一起使用 - 请参阅Post data to JsonP。 actionMethods
无法配置Ext.data.proxy.JsonP