2017-07-18 2 views

Répondre

2

Une chaîne vide devrait faire l'affaire.

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