我正在尝试使用需要一些参数的 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'
}
}