How can I send a file with vue.js?
The following code is not working for me:
<span title="Upload" class="badge badge-info">
<input type="file" id="file" name="file" @change="uploadData" class="archive" > <i id="iarchive" class="fa fa-upload"></i>
</span>
When I make console.log(this.request.file) I get FILE [object File].
Here is the .js:
uploadData: function(e) {
var files = e.target.files[0];
this.request.action = 'upload';
this.request.file = files;
console.log("FILE "+this.request.file);
this.$http.post('data/getData.php', {
data: this.request,
headers: {
'Content-Type': 'multipart/form-data'
}
}
).then(function(response) {
console.log("RESPONSE: "+response.body);
}, function(response) {
alert("error");
});
return false;
}
But in PHP, I can't get the file, the response is :{} No properties.
PHP code:
$request = json_decode(file_get_contents('php://input'));
$req = $request->data;
echo json_encode($req->file)