18.03.01 20:49 작성
·
207
답변 2
0
2018. 03. 02. 15:54
가능합니다.
pouchDB와 CouchDb의 sync는 database provider에서 컨트롤합니다.
constructor() {
this.db = new PouchDB("firstcouch");
let options = {
live : true,
retry : true,
contineous : true
}
this.db.sync(this.remoteDB,options);
}
option에서 contineous를 false로 하고
필요한 싯점에서 sync를 하면 됩니다.
database provider는 어프리케이션 실행 싯점에서 세팅이 되므로
이부분을 다른 페이지나 기타 필요한 부분에서 사용하시면 됩니다.