我正在尝试使用Express下载一个文件。
router.get('/download', function(req, res){
const file = `../public/download/file.zip`;
res.download(file);
});但我错了:Not Found。
发布于 2022-11-02 11:50:15
我找到了答案:看起来web提供者将文件的大小限制设置为4mb,但我的文件大小是8mb。
https://stackoverflow.com/questions/74288189
复制相似问题