JavaScript
·
发表于 5年以前
·
阅读量:705
在Electron开发时,使用fs
模块往本地文件中写入内容。
// 引入fs模块
const fs = require('fs');
//this.codemirror.getValue() 为我们要写入的内容,使用时请自行替换。
fs.writeFile(this.path, this.codemirror.getValue(), (err) => {
if (err) {
console.log(err);
} else {
this.$message({
message: '保存成功',
type: 'success'
});
}
})