gpt4 book ai didi

html - 如何在nodejs中下载托管在http网络服务器上的文件

转载 作者:搜寻专家 更新时间:2023-10-31 23:03:20 26 4
gpt4 key购买 nike

我创建了一个 nodejs http 网络服务器来托管一些文件 -

 var http = require('http'),
fs = require('fs');

var finalhandler = require('finalhandler');
var serveStatic = require('serve-static');
var qs = require('querystring');
var serve = serveStatic("./");
fs.readFile('./index.html', function (err, html) {
if (err) {
throw err;
}
http.createServer(function(req, res) {
var done = finalhandler(req, res);
serve(req, res, done);
if(req.method === "POST") {
if (req.url === "/downloadInstaller") {
var requestBody = '';
req.on('data', function(data) {
requestBody += data;
if(requestBody.length > 1e7) {
res.writeHead(413, 'Request Entity Too Large', {'Content-Type': 'text/html'});
res.end('<!doctype html><html><head><title>413</title></head><body>413: Request Entity Too Large</body></html>');
}
});
req.on('end', function() {
fs1.readFile("./FileToDownload.zip", function(err, data)
{ res.statusCode = 200;
res.setHeader('Content-type', 'text/plain' );
res.write(data);
return res.end();
});
});
}
}
}).listen(8000);
});

它运行良好。我可以在点击 url 时下载文件 - http://localhost:8000/fileToDownload.extension

现在,我的 index.html 看起来像 -

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<form action="/downloadInstaller" method="post">
<label>OS Flavor : </Label>
<input type="text" id="os" name="os"/>
<input type="submit"/>
</form>

我想在单击提交按钮时下载相同的文件。我已经编写了相同的代码。但它在浏览器中呈现文件而不是下载它。我怎样才能在nodejs中实现它?nodejs 相当新。

谢谢

最佳答案

你应该删除它:

 res.setHeader('Content-type', 'text/plain' );

并用提示浏览器应该下载文件的 header 替换它:

res.setHeader('Content-Description', 'File Transfer');
res.setHeader('Content-Type', 'application/octet-stream');
res.setHeader('Content-Type', 'application/force-download'); // only if really needed
res.setHeader('Content-Disposition', 'attachment; filename=FileToDownload.zip');

注意:“force-download” header 是一个肮脏的 hack,请先尝试不使用它。

关于html - 如何在nodejs中下载托管在http网络服务器上的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48402228/

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