How do I perform an Ajax request to CouchDB (http://.couchone.com/)

前端 未结 2 1797
借酒劲吻你
借酒劲吻你 2021-02-10 20:37

I\'m trying to create a simple AJAX (via jQuery) request to http://yourusername.couchone.com/ (alsmost the same as if I had installed couchdb on localhost)

2条回答
  •  眼角桃花
    2021-02-10 21:15

    Cross-site security model prevents you from doing JSON requests to a different domain.

    You need to use JSONP to be able to accomplish that. It does the request as a

提交回复
热议问题