electron数据存储 electron-store

npm安装:

npm install electron-store

yarn安装:

yarn add electron-store

使用方法:

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

我的store.set()存储地址:

C:\Users\mi\AppData\Roaming\exam-master\config.json
(exam-master项目名)

详情链接:https://xushanxiang.com/2019/12/electron-store.html

发布了218 篇原创文章 · 获赞 35 · 访问量 13万+

猜你喜欢

转载自blog.csdn.net/qq_41614928/article/details/103698291