小编典典

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

ajax

请帮我解决我的问题!我使用了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

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


阅读 503

收藏
2020-07-26

共1个答案

小编典典

您陷入跨域问题。

您可以考虑使用couchdb-xd

2020-07-26