Electron开发实战之记账软件17——使用Lowdb存储数据

Stella981
• 阅读 1214

代码仓库: https://github.com/hilanmiao/LanMiaoDesktop

请先阅读这位作者的文章,基本是按照他的思路做的。 https://molunerfinn.com/electron-vue-3/#lowdb%E5%AE%9E%E9%99%85%E4%BD%BF%E7%94%A8%E7%9A%84%E5%9D%91

lodash 中文文档 https://www.html.cn/doc/lodash/ http://lodash.think2011.net/assign

lodash-id 中文文档 https://www.helplib.com/GitHub/article_106283

初始化

核心代码如下:

import Datastore from 'lowdb'
import LodashId from 'lodash-id'
import FileSync from 'lowdb/adapters/FileSync'
import path from 'path'
import fs from 'fs-extra'
// 引入remote模块
import { app, remote } from 'electron'
// package.json
import pkg from '../../package.json'

// 根据process.type来分辨在哪种模式使用哪种模块
const APP = process.type === 'renderer' ? remote.app : app

// 获取electron应用的用户目录
const STORE_PATH = APP.getPath('userData')
// console.log(STORE_PATH)
// C:\Users\JD\AppData\Roaming\Electron

if (process.type !== 'renderer') {
    // 如果不存在路径
    if (!fs.pathExistsSync(STORE_PATH)) {
        // 就创建
        fs.mkdirpSync(STORE_PATH)
    }
}

// 以同步的方式初始化lowdb读写的json文件名以及存储路径
const adapter = new FileSync(path.join(STORE_PATH, `/${pkg.name}_lowdb.json`))

// lowdb接管该文件
const db = Datastore(adapter)
// 通过._mixin()引入lodash_id唯一id插件
db._.mixin(LodashId)

// 初始化数据
if(!db.has('user').value()) {
    db.set('user',[{userId: 'admin', password: '123456'}]).write()
}

if(!db.has('category').value()) {
    db.set('category', []).write()
}

if(!db.has('assets').value()) {
    db.set('assets', []).write()
}

if(!db.has('incomeAndExpenditure').value()) {
    db.set('incomeAndExpenditure', []).write()
}

export default db // 暴露出去

效果: Electron开发实战之记账软件17——使用Lowdb存储数据

Electron开发实战之记账软件17——使用Lowdb存储数据

编写api并使用

结合vuetify的datatable组件做了个CRUD的例子,具体请查看源码。

Electron开发实战之记账软件17——使用Lowdb存储数据

文件结构如下,api也可以放到renderer里,因为我主进程也可能会用到,所以我这边主要把它拿出来了,不一定合适,看个人习惯吧。

Electron开发实战之记账软件17——使用Lowdb存储数据

核心代码如下,insert、upsert、removeWhere等其实都是lodash-id这个模块封装的,你可以点击看看,其实里面的代码还是lodash的,你也可以封装自己的方法。

import db from '../datastore'

export function getCategoryById(id) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            const category = collection.getById(id).value()
            resolve({
                code: 200,
                data: category
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function getCategoryWhere(attrs) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            const categoryList = collection.filter(attrs).value()
            resolve({
                code: 200,
                data: categoryList
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function getCategoryAll() {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            const categoryAll = collection.value()
            resolve({
                code: 200,
                data: categoryAll
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function getCategoryPagination(pagination, whereAttrs) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            const total = collection.size().value()
            const categoryList = collection
                .filter(o => {
                    // 模糊查询
                    return o.category.match(whereAttrs.category)
                })
                .orderBy(pagination.sortBy, pagination.descending ? 'desc' : 'asc')
                .chunk(pagination.rowsPerPage === -1 ? total : pagination.rowsPerPage)
                .take(pagination.page)
                .last() // 因为上面用了chunk,是个二维数组,所以这里取最后一个
                .value()
            resolve({
                code: 200,
                data: {total: total, list: categoryList}
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function postCategory(document) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            const category = collection.find({category: document.category}).value()
            if(category) {
                return reject({
                    code: 400,
                    message: 'This classification already exists'
                })
            }
            const newCategory = collection.insert(document).write()
            resolve({
                code: 200,
                data: newCategory
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function postOrPutCategory(document) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            if(collection.find({category: document.category}).value()) {
                return reject({
                    code: 400,
                    message: 'This classification already exists'
                })
            }
            const newCategory = collection.upsert(document).write()
            resolve({
                code: 200,
                data: newCategory
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function putCategoryById(id, attrs) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            if(collection.find({category: attrs.category}).value()) {
                return reject({
                    code: 400,
                    message: 'This classification already exists'
                })
            }
            const newCategory = collection.updateById(id, attrs).write()
            resolve({
                code: 200,
                data: newCategory
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function putCategoryWhere(whereAttrs, attrs) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            if(collection.find({category: attrs.category}).value()) {
                return reject({
                    code: 400,
                    message: 'This classification already exists'
                })
            }
            const newCategory = collection.updateWhere(whereAttrs, attrs).write()
            resolve({
                code: 200,
                data: newCategory
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function replaceCategoryById(id, attrs) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            const newCategory = collection.replaceById(id, attrs).write()
            resolve({
                code: 200,
                data: newCategory
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function deleteCategoryById(id) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            collection.removeById(id).write()
            resolve({
                code: 200
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function deleteCategoryByIds(ids) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            ids.forEach(id => {
                collection.removeById(id).write()
            })
            resolve({
                code: 200
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

export function deleteCategoryWhere(whereAttrs) {
    return new Promise((resolve, reject) => {
        try {
            const collection = db.get('category')
            const categoryList = collection.removeWhere(whereAttrs).write()
            resolve({
                code: 200,
                data: categoryList
            })
        } catch (err) {
            return reject({
                code: 400,
                message: err.message
            })
        }
    })
}

说明

  1. 这种微小型数据库,不大可能支持G级,网友说也就是几百MB,所以如果数据量很大,请切换到sqlite。其实写个博客,做个单机小系统足够了,大不了分几个库,反正都是些文件,甚至可以按照日期一天一个文件,当然这样就麻烦了。
  2. 多表查询、分页,emmm,没有这些功能,所有的数据都已经在内存中了,随便折腾就好了......我代码中类似分页这种功能只是在模拟一些动作而已
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Easter79 Easter79
3年前
swap空间的增减方法
(1)增大swap空间去激活swap交换区:swapoff v /dev/vg00/lvswap扩展交换lv:lvextend L 10G /dev/vg00/lvswap重新生成swap交换区:mkswap /dev/vg00/lvswap激活新生成的交换区:swapon v /dev/vg00/lvswap
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
Java获得今日零时零分零秒的时间(Date型)
publicDatezeroTime()throwsParseException{    DatetimenewDate();    SimpleDateFormatsimpnewSimpleDateFormat("yyyyMMdd00:00:00");    SimpleDateFormatsimp2newS
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这