gpt4 book ai didi

download - 在 angularjs 和express.js 之间进行下载

转载 作者:行者123 更新时间:2023-12-02 21:59:18 25 4
gpt4 key购买 nike

我可以获取我请求的文件的原始数据,但无法让浏览器向用户提供文件。我需要使用 iframe 吗?

   //Client code
download_file: function (path, callback) {
$http.post('/download/client_file', {path:path}).
success(function(data, status, headers, config) {
console.log(data); //this contains the raw data of the res.download
//from the server.
});
}

//server code
res.download(file); // the path is proper

最佳答案

我在我的服务文件中使用了下面的代码来下载项目,效果很好。我从 http://filamentgroup.com/lab/jquery_plugin_for_requesting_ajax_like_file_downloads/ 得到的

$('<form action="'+ url +'" method="'+ ('post') +'">'+inputs+'</form>')
.appendTo('body').submit().remove();

关于download - 在 angularjs 和express.js 之间进行下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13894009/

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