vue 读取本地文件:
想在vue中读写文件可以用Node.js来读取文件
// 引入Node.js文件系统模块:
// fs是Node.js自带的模块,使用Node.js中的关键字require将模块引入
const fs = require(‘fs’)
//调用readFile方法读取磁盘文件:异步操作
fs.readFile(‘d:\demo\images\aaa.txt’, function (err, data) {
//当文件读取失败时,可以获取到err的值,输出错误信息
if (err) throw err
//当文件读取成功时,可以获取到data的值,输出响应的内容
console.log(data.toString())
})
console.log(‘读取文件’)
fs.readFile 是异步读取
fs.readFileSync(path, ‘utf-8’)为同步读取
vue 写入本地文件:
fs.writeFile(“文件路径”,“内容”, function (error) {
if (error) {
console.log(‘写入失败’)
} else {
console.log(‘写入成功’)
}
})
fs.writeFileSync(path, content) 同步写入