从vue前端单个多种不同类型文件的路径到node后端接口,我想实现文件的下载功能,不使用js功能,请给出前后端代码
时间: 2023-03-13 20:22:45 浏览: 102
vue实现下载文件流完整前后端代码
前端代码: // Vue.js
let filePath = "你的文件路径";let link = document.createElement('a');
link.href = filePath;
link.setAttribute('download', '');
document.body.appendChild(link);
link.click();// 后端代码
// Node.js
const express = require('express');
const router = express.Router();
router.get('/download', (req, res) => {
let filePath = req.query.filePath;
res.download(filePath);
});
module.exports = router;
阅读全文