大良网站公司,wordpress文章编辑框,建筑招聘求职网,wordpress模板文件是那个Electron文件写入、读取#xff08;作用#xff1a;公共全局变量#xff0c;本地存储#xff09;
使用Node.js的fs模块 也可以直接使用Node.js的fs模块来实现本地文件的读写操作
// electron/main.jsconst fs require(fs);// 写入文件localhost.txt
fs.writeFileSync(lo…Electron文件写入、读取作用公共全局变量本地存储
使用Node.js的fs模块 也可以直接使用Node.js的fs模块来实现本地文件的读写操作
// electron/main.jsconst fs require(fs);// 写入文件localhost.txt
fs.writeFileSync(localhost.txt, 写入成功);// 读取文件localhost.txt
const localhostData fs.readFileSync(localhost.txt, utf8);
console.log(localhostData);