vue-resource
vue-resource copied to clipboard
this.$http.delete 无法使用application/x-www-form-urlencoded
this.$http.delete(this.deleteProductUrl, {
ids: goodsId
}, {
"Content-Type": "application/x-www-form-urlencoded"
}, {
emulateJSON: true
}).then((response) => {
alert(response.data.reason)
})
但是在控制台查看头部信息:

怎样使用参数请选择 body(主体) x-www-form-urlencoded 进行传递参数?
Please check your params:
this.$http.delete(url, [options]).then(xxxx)
this.$http.delete(this.deleteProductUrl, {
params: {
ids: goodsId
},
emulateJSON: true
}).then((response) => {
alert(response.data.reason)
})
https://github.com/pagekit/vue-resource/blob/develop/docs/http.md#methods