上传文件到node服务器保存并返回文件信息
关键是要使用一个中间件multer
使用express:
1 | const express = require('express') |
前端代码:
1 | <input type="file" @change="loadFile"> |
1 | loadFile(event) { |
返回的data里会有path的属性,是中间件写上去的,是文件保存的路径
关键是要使用一个中间件multer
使用express:
1 | const express = require('express') |
前端代码:
1 | <input type="file" @change="loadFile"> |
1 | loadFile(event) { |
返回的data里会有path的属性,是中间件写上去的,是文件保存的路径