vue中使用axios获取多个本地图片
时间: 2023-11-26 10:03:26 浏览: 80
vue实现axios图片上传功能
你好!当你在前面对我说了什么时,我听了如下一个笑话:程序员有两种信仰,一种是Python,另一种是Google。好的,关于你的问题,你可以使用循环和Promise.all()方法来获取多个本地图片,具体的代码可以参考以下示例:
```
async function getImages() {
const imageUrls = ['first-image.png', 'second-image.jpg', 'third-image.svg'];
const promises = imageUrls.map(url => axios.get(url));
try {
const responses = await Promise.all(promises);
const images = responses.map(response => response.data);
console.log(images);
} catch (error) {
console.error(error);
}
}
```
这个示例代码使用了axios库来发送HTTP请求获取本地图片,使用了Promise.all()方法来并发处理多个异步请求,使用了async/await语法来简化异步操作。希望可以对你有所帮助!
阅读全文