将 PouchDB 与 angular 5 或 6 一起使用
Use PouchDB with angular 5 or 6
如何将 PouchDB 添加到 Angular 5 或 6 项目中?我正在使用 Angular 6,但找不到任何方法。
是的,您可以将 PouchDB 与 angular 一起使用 library
import PouchDB from 'pouchdb';
这是我遇到的示例 Poucdhb with angular
项目。
您可以如下使用,
private db: any;
private isInstantiated: boolean;
private listener: EventEmitter<any> = new EventEmitter();
public constructor() {
if (!this.isInstantiated) {
this.db = new PouchDB('locosporalva');
this.isInstantiated = true;
}
}
如何将 PouchDB 添加到 Angular 5 或 6 项目中?我正在使用 Angular 6,但找不到任何方法。
是的,您可以将 PouchDB 与 angular 一起使用 library
import PouchDB from 'pouchdb';
这是我遇到的示例 Poucdhb with angular
项目。
您可以如下使用,
private db: any;
private isInstantiated: boolean;
private listener: EventEmitter<any> = new EventEmitter();
public constructor() {
if (!this.isInstantiated) {
this.db = new PouchDB('locosporalva');
this.isInstantiated = true;
}
}