持久化设置保存的地址和内容

const Store = require('electron-store') const settingsStore = new Store({name:'Settings'})
let savedLocation =  settingsStore.get('saveFileLocation') if(savedLocation){    ... }   settingsStore.set('saveFileLocation',savedLocation) const savedLocation = settingsStore.get('saveFileLocation') || remote.app.getPath('documents')
上一篇:SpringBoot开启异步任务


下一篇:常见的请求方式 以及 get和post 区别