简体   繁体   English

如何在vue中创建下载文件

[英]how to create download file in vue

I have the task to download the file in vue, but I don't know how to make it because I'm still a beginner. 我的任务是在vue中下载文件,但由于我仍然是初学者,所以我不知道如何制作。

I tried this code, but the results actually opened the image on the new page 我尝试了这段代码,但结果实际上在新页面上打开了图像

 <a class = "btn btn-success btn-xs" href = "https://78.media.tumblr.com/tumblr_m39nv7PcCU1r326q7o1_500.png" download = "myImage.png" target = "_ blank" > Download </a> 

You could delete the target attribute and the file would be opened on the same page. 您可以删除目标属性,并且文件将在同一页面上打开。

 <a class = "btn btn-success btn-xs" href = "https://78.media.tumblr.com/tumblr_m39nv7PcCU1r326q7o1_500.png" download = "myImage.png" > Download </a> 

use this for current page. 用于当前页面。

 <a class = "btn btn-success btn-xs" href = "https://78.media.tumblr.com/tumblr_m39nv7PcCU1r326q7o1_500.png" download = "myImage.png" target = "_self" > Download </a> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM