gpt4 book ai didi

javascript - 如何让 Electron + rxdb 工作?

转载 作者:搜寻专家 更新时间:2023-11-01 00:36:38 28 4
gpt4 key购买 nike

我想通过使用 electron + rxdb 学习和开发桌面应用。

我的文件结构:

  • main.js(electron的主进程)
  • /js-server/db.js(关于rxdb数据库,包括创建)
  • /js-client/ui.js (electron的渲染进程)
  • index.html(html主页)

ma​​in.js 代码:

const electron = require('electron')
const dbjs = require('./js-server/db.js')
const {ipcMain} = require('electron')
ipcMain.on('search-person', (event, userInput) => {
event.returnValue = dbjs.searchPerson(userInput);
})

db.js代码:

var rxdb = require('rxdb');
var rxjs = require('rxjs');
rxdb.plugin(require('pouchdb-adapter-idb'));
const personSchema = {
title: 'person schema',
description: 'describes a single person',
version: 0,
type: 'object',
properties: {
Name: {type: 'string',primary: true},
Age: {type: 'string'},
},
required: ['Age']
};
var pdb;
rxdb.create({
name: 'persondb',
password: '123456789',
adapter: 'idb',
multiInstance: false
}).then(function(db) {
pdb = db;
return pdb.collection({name: 'persons', schema: personSchema})
});

function searchPerson(userInput) {
pdb.persons.findOne().where('Name').eq(userInput)
.exec().then(function(doc){return doc.Age});
}
module.exports = {
searchPerson: searchPerson
}

ui.js代码:

const {ipcRenderer} = require('electron');
function getFormValue() {
let userInput = document.getElementById('searchbox').value;
displayResults(ipcRenderer.sendSync("search-person",userInput));
document.getElementById('searchbox').value = "";
}

每当我运行这个应用程序时,我都会遇到这些错误:

  1. ( Node :6084)UnhandledPromiseRejectionWarning:未处理的 promise 拒绝(拒绝 ID:2):错误:RxError:RxDatabase.create():未添加适配器。 (我确信我已经成功安装了 pouched-adapter-idb 模块)
  2. 类型错误,无法读取未定义的属性“persons”。 (当我在 index.html 中搜索并按回车键进入表单时会弹出此错误)

我是编程新手,尤其是js,我已经被这些错误卡住了一个星期,就是无法让它工作。有什么帮助吗?谢谢。

最佳答案

问题是这一行在 main.js 中:

const dbjs = require('./js-server/db.js')

为什么?因为您需要在主进程中使用 RxDB 并使用 IndexedDB 适配器。 IndexedDB 是一种浏览器 API,因此只能在渲染过程中使用。在 Electron 中,主进程是一个纯 Node/Electron 环境,无法访问 Chromium API。

选项 #1

如果您想将数据库保存在单独的线程中,请考虑生成一个新的隐藏浏览器窗口:

import {BrowserWindow} from 'electron'
const dbWindow = new BrowserWindow({..., show: false})

然后使用 IPC 在两个窗口之间进行通信,类似于您已经完成的操作。

选项 #2

使用只需要 NodeJS API 的 levelDB 适配器,这样您就可以将数据库保留在主进程中。

关于javascript - 如何让 Electron + rxdb 工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49356898/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com