3
是否有可能將值爲null的參數傳遞給axios?看來,null values are just ignored ...Axios:在請求中發送空值作爲參數
是否有可能將值爲null的參數傳遞給axios?看來,null values are just ignored ...Axios:在請求中發送空值作爲參數
一個空字符串應該做的伎倆。
var data = new FormData();
data.append('location_id', '');
axios.post('/location/update', data)
.then(function(response) {
console.log(response.data);
})
.catch(function(error) {
console.log(error);
});