2
我有一个非常基本的HTML块,其中有一个button
下载:下载阵列
<div id="getImageWrapper">
<div class="image">
<p class="image-name">{{imageName}}</p>
<button class="download-btn" @click="getImage">Download image/s</button>
</div>
</div>
下载按钮的getImage()
功能获取图像列表的数组从服务器。从服务器
getImage() {
const getImagesUrl = this.$store.state.website + '/api/get-requested-user-Images/';
this.$http.get(getImagesUrl)
.then(function (response) {
console.log(response.data);
})
.catch(function (response) {
console.log(response);
});
}
响应数据看起来是这样的:
[
{
"image": "/media/1492960503_66.jpeg"
},
{
"image": "/media/1492963100_0.jpeg"
}
]
我的问题是这样,这个阵列图像被下载到用户的设备下一步做什么(而不是作为一个单独的压缩文件,但作为单独的单个图像文件),这将在大多数浏览器中工作?如果有帮助,我使用Django作为后端,Vuejs作为前端。
可能重复[一次下载多个图像用Javascript](http://stackoverflow.com/questions/19830088/download-multiple-images-at-once-with-javascript) – Archer