Axios:在请求中将空值作为参数发送

Axios: Send null value as param in request

是否可以将值为null的参数传递给axios?似乎 null values are just ignored...

空字符串应该可以解决问题。

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);
});