PouchDB 4.0.3:在无法访问的数据库上调用info()时未捕获(在承诺中)

时间:2015-09-22 12:26:40

标签: javascript pouchdb

从PouchDB 4.0.3开始,当我这样做时:

var remoteDbInstance = new PouchDB(*myCouchDbUrl*);

remoteDbInstance.info().then(function (resRemoteInfo) {
    console.log(resRemoteInfo);   
}).catch(function (err) {
    console.log(err);
});

如果myCouchDbUrl回复:好的 但是如果myCouchDbUrl无法访问:我获得了

Uncaught(In promise)

Chrome控制台中的

......

一个想法?

很多

1 个答案:

答案 0 :(得分:0)

听起来像是PouchDB中的一个错误。你能在Github上提交测试用例吗?该错误肯定会出现在您的catch()函数中。

编辑:好的,我可以确认,我已经提交了一个错误:https://github.com/pouchdb/pouchdb/issues/4358