我正在使用pouchDB,但我对它很陌生。 我想在我的用户数据库中为文档添加键/值。 这是我的尝试:
this.addToExistingUser = function(docId,key,value) {
usersDatabase.get(docId).then(function(doc) {
return db.put({
_id: docId,
_rev: doc._rev,
key: value
});
}).then(function(response) {
alert("done eee");
}).catch(function (err) {
console.log("error from addToExistingUser:");
console.log(JSON.stringify(err));
});
}
其中docId是我定位的文档的_id。 顺便说一句,我可以使用电子邮件字段指向我定位的文档吗?
我收到此错误:
{"status":404,"name":"not_found","message":"missing","error":true,"reason":"missing"}
由于
答案 0 :(得分:0)
最后,我这样做了,它可以向doc添加一个字段:
usersDatabase.get(docId).then(function(doc) {
doc[key] = value;
return usersDatabase.put(doc);
}).then(function(response) {
}).catch(function (err) {
});