foreach 发送axios请求
时间: 2023-07-10 22:27:56 浏览: 164
C#foreach原理
您可以使用 JavaScript 中的 forEach 方法来遍历一个数组。在每次迭代中,您可以使用 Axios 库来发送 AJAX 请求。以下是一个简单的示例代码:
```javascript
let arr = [1, 2, 3, 4, 5];
arr.forEach(function(item) {
axios.get('example.com/api/data/' + item)
.then(function(response) {
console.log(response.data);
})
.catch(function(error) {
console.log(error);
});
});
```
在上面的代码中,我们使用 forEach 方法遍历数组 arr。在每次迭代中,我们使用 Axios 库的 get 方法发送 AJAX 请求,并设置其成功和失败的回调函数。然后,我们在成功回调函数中输出响应数据,在失败回调函数中输出错误信息。
请注意,上面的代码只是一个示例,实际中您需要根据您的具体情况进行调整。同时,请确保您已经正确引入了 Axios 库。
阅读全文