jQuery .ajax不适用于http://127.0.0.1:5984

请帮我解决我的问题!我使用了CouchDB,并且使用了jquery.couch.js与CouchDB服务器(http://daleharvey.github.com/jquery.couch.js-

docs/symbols/index.html)进行通信,但这没用( (该脚本的开头:

$.couch.urlPrefix = 'http://127.0.0.1:5984'

function getAllDBs(){

$.couch.db('mysecondtest').allDocs({

error: function(status, id, reason) {alert(status+' : '+id+' : '+reason);},

success:function(data){

alert(data);

}

});

}

getAllDBs();

返回错误:

405 Method Not Allowed localhost:5984

我认为,这意味着服务器将我的请求视为对远程服务器的请求,但我不知道要纠正它。请帮助我,对不起我的英语不好))

回答:

您陷入跨域问题。

您可以考虑使用couchdb-xd

以上是 jQuery .ajax不适用于http://127.0.0.1:5984 的全部内容, 来源链接: utcz.com/qa/416767.html

回到顶部