PouchDB on Cloudant
问题 I am currently using PouchDB and I am making use of Cloudant to make my db in PouchDB to be on cloud. I did callback method and it gave a success callback, however, I check my database on Cloudant, there's 0 doc created but there's 8 update seq. May I know why? This is my set of code I used. function pouchdb() { var db = new PouchDB("todos"); var remoteDB = new PouchDB("http://example.cloudant.com/example"); var todo = { _id: "mittens1233", title: "hello", occupation: "kitten123" }; db.put