levelup.js?006c:115未捕获TypeError:dbFactory不是函数
这是我的问题。 我在镀铬中使用它,但没关系。 当我在电子(Vue2.0)中使用它时,同样如此,但请给我这个提示。 谁能帮帮我?
答案 0 :(得分:1)
我遇到了同样的问题但无法解决。这是一些文档:https://github.com/nolanlawson/hello-electron-with-pouchdb。作者说,另一种解决方案是使用pouchdb的浏览器版本,最终对我有用。
示例:
import PouchDB from 'pouchdb-browser'
const db = new PouchDB('testdb', {adapter: 'websql'});
答案 1 :(得分:0)
尝试将init PouchDB用作
const PouchDB = require('electron').remote.require('pouchdb');