PouchDB/CouchDB 复制失败,方法不允许

PouchDB/CouchDB Replication Fails with Method Not Allowed

尝试让 www.server1.com 使用 PouchDB 与安装在 www.server2.com 上的 CouchDB 通信。尝试复制数据时,出现以下错误:

error: true
message: "Database encountered an unknown error"
name: "unknown_error"
status: 405
statusText: "Method Not Allowed"

来自服务器:

$ curl -X GET http://admin:secret@127.0.0.1:5984/_config/cors
{"credentials":"false","origins":"*","methods":"GET,POST,PUT,DELETE,OPTIONS",
"headers":"accept,authorization,content-type,origin,X-Couch-Id,X-Couch-Rev"}

并且在 JavaScript 中:

var localDB, remoteDB, allSynced = null; 

function initializePouch(){
  localDB = new PouchDB('databaseone');
  remoteDB = new PouchDB('http://admin:secret@<remote ip>:5984/databaseone');

  localDB.info().then(function (info) {
    console.log('Get DB info', info);
  });

  retryReplication();
}

function retryReplication() {
  localDB.sync(remoteDB, {live: true}).on('change', function (change) {
    console.log('Replication done.');
  }).on('error', function (err) {
    console.log('error while replicating');
    console.log(err);
    if( !allSynced ) {
      setTimeout(retryReplication, 30000);
    }
  });
}
initializePouch();

控制台内容如下:

start.html:229 Get DB info Object {doc_count: 0, update_seq: 0, db_name: "database",
auto_compaction: false}

我尝试了使用和不使用 admin:secret,但每次都失败了。 Apache CouchDB 1.6.1

有什么想法吗?

这是一个 CORS 错误。如果我不得不猜测,我会说您需要在您的服务器上将 credentials 设置为 true。如果您不确定,只需 运行 add-cors-to-couchdb 脚本,然后再试。