Vue使用formData格式类型上传文件的示例

本文介绍在Vue.js项目中如何使用FormData进行文件上传。通过创建FormData对象,并在axios异步请求时作为参数,轻松实现前后端分离项目的文件上传功能。
摘要由CSDN通过智能技术生成
uploadfile2(){
   
    // 当点击button按钮后会触发此事件
    // 作用就是打开文件上传弹框
     this.$refs.uploadfile2.click()
   },
   filevaluechange2(){
   
   // 选中文件后,会触发input的change事件,即会进入此函数
     <
可以使用FormData对象来实现文件上传和下载。在Vue中,可以使用axios库来发送HTTP请求。以下是一个上传文件示例代码: ```javascript <template> <div> <input type="file" @change="handleFileUpload"/> <button @click="uploadFile">上传文件</button> </div> </template> <script> import axios from 'axios'; export default { data() { return { file: null } }, methods: { handleFileUpload(event) { this.file = event.target.files[0]; }, uploadFile() { let formData = new FormData(); formData.append('file', this.file); axios.post('/api/upload', formData) .then(response => { console.log(response); }) .catch(error => { console.log(error); }); } } } </script> ``` 在服务器端,可以使用Node.js的multer库来处理文件上传。以下是一个Node.js的示例代码: ```javascript const express = require('express'); const multer = require('multer'); const app = express(); const storage = multer.diskStorage({ destination: function (req, file, cb) { cb(null, 'uploads/') }, filename: function (req, file, cb) { cb(null, file.originalname) } }); const upload = multer({ storage: storage }); app.post('/api/upload', upload.single('file'), (req, res) => { console.log(req.file); res.send('文件上传成功'); }); app.listen(3000, () => { console.log('服务器已启动'); }); ``` 对于文件下载,可以使用axios库的get方法来发送HTTP请求,服务器端则需要设置Content-Disposition头信息。以下是一个下载文件的示例代码: ```javascript <template> <div> <button @click="downloadFile">下载文件</button> </div> </template> <script> import axios from 'axios'; export default { methods: { downloadFile() { axios({ url: '/api/download', method: 'get', responseType: 'blob' }) .then(response => { const url = window.URL.createObjectURL(new Blob([response.data])); const link = document.createElement('a'); link.href = url; link.setAttribute('download', 'file.txt'); document.body.appendChild(link); link.click(); }) .catch(error => { console.log(error); }); } } } </script> ``` 在服务器端,可以使用Node.js的sendFile方法来发送文件。以下是一个Node.js的示例代码: ```javascript const express = require('express'); const app = express(); app.get('/api/download', (req, res) => { res.setHeader('Content-Disposition', 'attachment; filename=file.txt'); res.sendFile(__dirname + '/file.txt'); }); app.listen(3000, () => { console.log('服务器已启动'); }); ``` 希望这个示例代码能够帮助你完成文件上传和下载功能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值