我正在尝试将数组和字符串一起发送但它不起作用。只发送名称。 images数组是空的。
你能建议这样做吗?
axios.post('/user', {
images: this.form,
name: 'Fred',
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
我也喜欢这样,但只发送了这张。
axios.post('/user', this.form, this.name)
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});