【发布时间】:2011-11-23 12:08:24
【问题描述】:
请帮我解决我的问题! 我使用了 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
我认为,这意味着服务器将我的请求视为对远程服务器的请求,但我不知道如何更正它。请帮助我,对不起我的英语不好))
【问题讨论】: