我正在使用pouchDb +离子3.在使用离子3创建pouchDb时没有提及任何参数(默认情况下:websql)它运行正常。但每当我尝试使用适配器(indexedDB)时:
setupDB() {
this.db = new PouchDB('Contacts', {adapter : 'idb'});
}
它引发了一个错误:
ERROR Error: Invalid Adapter: idb
at new PouchDB$5 (VM46 vendor.js:118540)
请帮助。