Answer the question
In order to leave comments, you need to log in
How to send and receive data in vue-resource?
To send, I do this:
new Vue({
el: '#id',
data: {
endpoint: 'send.php'
},
methods: {
send: function() {
var options = {
params: {
'get': 'test'
}
}
this.$http.post(this.endpoint, options).then(function(responce) {
alert(responce.data);
}, function(error) {
alert('error');
})
}
}
})
echo ($_POST['get'] == null)? 'false': $_POST['get'];
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question