发一个调用servlet的帖子没有得到

时间:2013-04-12 17:46:27

标签: extjs sencha-touch

我正在尝试让我的商店调用我的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'
     },
    }
}

});

1 个答案:

答案 0 :(得分:2)

您不能将POST与JSONP一起使用 - 请参阅Post data to JsonPactionMethods无法配置Ext.data.proxy.JsonP