具有数组和字符串的axios post

时间:2018-04-27 06:42:08

标签: axios

我正在尝试将数组和字符串一起发送但它不起作用。只发送名称。 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);
 });

0 个答案:

没有答案