使用axios发送JSON数组的方法如下:
import axios from 'axios';
const data = [
{ name: 'John', age: 25 },
{ name: 'Jane', age: 30 },
{ name: 'Bob', age: 35 }
];
axios.post('/api/endpoint', data)
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
这里的data
是一个JSON数组,通过axios.post
方法发送到指定的API端点。在服务器端,你可以使用相应的框架/库(如Express)来解析和处理接收到的JSON数组数据。