我正在使用某个formdata向URL发帖请求....我有兴趣捕获 “命令”:“插入” 回应中的部分..
当我使用AXIOS向网址发帖时。我没有得到 “命令”:“插入” 部分
axios.post('https://www.localgov.ie/en/views/ajax', {
validation_date_from: "10/10/2017",
view_name : "bcsm_search_results",
view_display_id : "notice_search_pane",
view_path : "bcms/search"
}).then(function(response){
console.log( response.data)
console.log("--------------------------------AXIOS POST")
})
但当我使用URL使用相同的表单变量调用相同的request时。 我得到 “命令”:“插入” 部分
var formdata ={
validation_date_from: "10/10/2017",
view_name : "bcsm_search_results",
view_display_id : "notice_search_pane",
view_path : "bcms/search"
} ;
request.post({
url: 'https://www.localgov.ie/en/views/ajax',
form: formdata
},
function (err, httpResponse, body) {
console.log(body);
console.log("--------------------------------request POST")
});
Here is a demo I have put on RequireBin ..请运行Mozilla或Cors禁用Chrome。
答案 0 :(得分:3)
这似乎是 axios '使用Content-Type: application/x-www-form-urlencoded
处理POST请求的问题。 There is an open issue that offers some discussion and possible workarounds in axios' GitHub page