Vue 资源 - Post 多个数据

Vue Resource - Post multiple data

我有以下内容:

bidAmount: {
    amount: 0
},
userToken: {
    token: null
},

this.$http.post('/place-bet', this.bidAmount, function(response) {
    alert(response);
});

如何同时发送 this.bidAmountthis.userToken

我试过了,但是发送不正确:

this.$http.post('/place-bet', [this.userToken, this.bidAmount], function(response) {
    alert(response);
});

你应该总是 post 一个对象,这样你就可以使用它们各自的键访问服务器上的变量:

this.$http.post('/place-bet', {userToken: this.userToken, bidAmount: this.bidAmount}, function(response) {
    alert(response);
});

或...

this.$http.post('/place-bet', {data:[this.userToken, this.bidAmount]}, function(response) {
    alert(response);
});

在数据对象中创建一个对象

new vue({
 el:'#point'
data: {

newdata:{
token:'',
bidAmount:''
 }
}

});

现在你可以

this.$http.post('/place-bet',this.newdata, function(response) {
    alert(response);
});