1

我正在尝试使用需要一些参数的 Sencha Architect 进行 POST 请求。我在额外的参数中给出了它。但是当我在存储中加载数据时,它说方法不允许(错误 405)。我的商店是

config: {
        autoLoad: true,
        model: 'MyApp.model.MyModel',
        storeId: 'MyJsonPStore',
        proxy: {
            type: 'rest',
            extraParams: {
                credentials: {
                    password: 'XXX',
                    ipAddress: '000.0.0.0',
                    deviceType: 'ZZZ',
                    username: 'ABCD',
                    clientVersion: '2.0.0.0',
                    clientHelpVersion: null
                }
            },
            url: 'http://abcd.com/login/',
            reader: {
                type: 'json',
                rootProperty: 'userLogin'
            }
        }
4

1 回答 1

0

您可以在商店中使用“actionMetods”强制请求方法:

(设置代理,API,作家等......并添加:)

actionMethods:  
    {
        create: 'POST', 
        read: 'POST',
        update: 'POST',
        destroy: 'POST'
    },
于 2013-09-02T12:09:08.910 回答