electron-store存储数据

左丘季
2023-12-01

存储数据我并没有采用数据库方案,仅仅存储数量不多的简单数据也不至于动用数据库。这里选择的是electron-store作为主要存储工具,这个工具即使不作为主要存储工具仅存储用户启动项也是极好的。

安装electron-store,如果使用npm安装不成功则使用cnpm安装,总有一款适合你。

使用方法:

const Store = require('electron-store');
 
const store = new Store();
//如果需要加密存储 就用下面的
//const store = new Store({encryptionKey: '加密值'});	
 
store.set('unicorn', '这是需要存储的内容');
console.log(store.get('unicorn')); //=> '这是需要存储的内容'
 
// Use dot-notation to access nested properties
store.set('foo.bar', true);
console.log(store.get('foo')); //=> {bar: true}
 
store.delete('unicorn');
console.log(store.get('unicorn'));  //=> undefined

这段代码在 main > index.js 中百试百灵,但是在vue文件下却出奇的不好使,这里卡了我2天的时间,添加了相应的代码后莫名其妙直接白屏,页面什么也不显示,也不报错。

最终的解决方案是:降版本!

当版本降到4.0以后上述问题全部解决~

不确定4.0以上的版本是否可以,我是直接测试的4.0,有兴趣的同学可以测测其他版本。

存储采用的是json文件,我这里的存储地址是 C:\Users\Administrator\AppData\Roaming\项目名\config.json

 类似资料: