如何让Electron + rxdb工作?

时间:2018-03-19 06:20:36

标签: javascript node.js electron

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

我的文件结构:

  • main.js(电子的主要过程)
  • /js-server/db.js(所有关于rxdb数据库,包括创建)
  • /js-client/ui.js(电子渲染过程)
  • index.html(html主页)

main.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 promise(拒绝ID:2):错误:RxError: RxDatabase.create():未添加适配器。 (我确信我已经成功安装了pouched-adapter-idb模块)
  2. 类型错误,无法读取未定义的属性“人员”。 (当我搜索并点击进入index.html中的表单时,会弹出此错误)
  3. 我是编程新手,特别是js,我已经坚持这些错误一个星期,只是无法让它工作。有帮助吗?感谢。

1 个答案:

答案 0 :(得分:3)

问题是这一行在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适配器,这样您就可以将数据库保留在主进程中。