当我尝试将数据库从PouchDB复制到CouchDB时,我遇到了问题。
以下是我用于数据库复制的代码
var db = new PouchDB('todos');
var remoteCouch = 'http://localhost:5984/db/';
function sync() {
var opts = {live: true};
db.replicate.to(remoteCouch, opts);
};
答案 0 :(得分:6)
编辑:现在有一个add-cors-to-couchdb脚本可以简化这个过程:
npm install -g add-cors-to-couchdb && add-cors-to-couchdb
如PouchDB getting started guide中所述,要启用CORS,您需要执行以下操作:
$ export HOST=http://username:password@myname.iriscouch.com
$ curl -X PUT $HOST/_config/httpd/enable_cors -d '"true"'
$ curl -X PUT $HOST/_config/cors/origins -d '"*"'
$ curl -X PUT $HOST/_config/cors/credentials -d '"true"'
$ curl -X PUT $HOST/_config/cors/methods -d '"GET, PUT, POST, HEAD, DELETE"'
$ curl -X PUT $HOST/_config/cors/headers -d \
'"accept, authorization, content-type, origin"'
我们还在common errors中记录了这一点,但显然其可搜索性仍然不够高。 :)