gpt4 book ai didi

javascript - 如何下载输入类型文件的内容/图像/数据?

转载 作者:行者123 更新时间:2023-11-30 08:42:09 24 4
gpt4 key购买 nike

我想知道如何下载输入类型文件中的数据/内容/图像

注意:不必提交。只需通过按钮直接下载,他就可以下载输入类型文件的内容

我该怎么做?

示例代码

$(".downloadupinvoice").click(function(){
var file = document.getElementById('id-input-file-2').files[0];

//Put some code here to produce a file ?
window.location=window.URL.createObjectURL(file);
})

我似乎无法预览该文件,但它没有下载,而且我在地址栏中注意到它显示如下

blob:69c7ee1a-ba44-4234-9216-68b3c86b9c96

最佳答案

终于明白了。

$(".downloadupaddinvoice").click(function(){
var filename = $('#id-input-file-2').val();

if (filename == "" || filename == null) {
alert('Error');
}else {
var file = document.getElementById('id-input-file-2').files[0];
var filename = document.getElementById('id-input-file-2').files[0].name;
var blob = new Blob([file]);
var url = URL.createObjectURL(blob);

$(this).attr({ 'download': filename, 'href': url});
filename = "";
}

})

这是 anchor 标记所在的位置:)

<a class="help-button col-sm-4 downloadupaddinvoice"  title="Download uploaded invoice" download><i class="icon-download-alt"></i></a>

希望对以后有帮助..

关于javascript - 如何下载输入类型文件的内容/图像/数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25395727/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com