我正在尝试对Angular使用dexie-export-import。但是我收到错误找不到模块:错误:无法解析'xxx \ node_modules \ dexie-export-import \ dist'中的'stream'。我尝试过并用Google搜索各种方法,但是我真的找不到使它起作用的方法。
我正在使用angular 7.2,dexie 2.0.4和dexie-export-import 1.0.0-alpha.9
import Dexie from 'dexie';
import 'dexie-export-import';
export class TestDatabase extends Dexie {
testTable: Dexie.Table<PersistableTest, number>;
constructor() {
super('test-database');
this.version(1).stores({
testTable: '++id'
});
this.testTable.mapToClass(PersistableTest);
this.export();
}
}
答案 0 :(得分:0)
似乎与汇总脚本有关。
我刚刚在npm上发布了一个新版本,该版本不应该包含要依赖的流。试试:
npm install dexie-export-import@1.0.0-alpha.10
请告诉我这是否可以解决问题!