我对Couchdb相当陌生,我有一个托管Couch DB集群的docker容器和一个React应用程序,该应用程序试图访问数据,但是由于授权错误,我无法提取数据。我已经更改了ouchdb的local.ini文件。 下面是代码
$.ajax({
url:'http://username:password@<IP>:5984/twitter',
type:'get',
dataType:'json',
}).then(res=>{console.log(res)}).catch(e => console.log(e))
Couchdb ini file:
[cors]origins = *
[cors:<IP>:port]
credentials = false
origins = *
methods = GET, PUT, HEAD
[httpd]
enable_cors = true
错误:
jquery.js:8815 GET http://username:password@<IP>:5984/twitter 401 (Unauthorized)