-1

我正在尝试让我的 Store 调用我的 servlet 的 post 方法,但是即使我将 actionMethods 设置为 post,它也会继续调用 get

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'
     },
    }
}

});

4

1 回答 1

2

您不能将 POST 与 JSONP 一起使用 - 请参阅将数据发布到 JsonPactionMethods不可配置为Ext.data.proxy.JsonP

于 2013-04-12T18:28:23.313 回答