我正在寻找一种为couchdb响应设置Contet-Type
的方法。
我POST
使用Content-Type
和Accept
请求标头为application/json
JSON GET
。但是当我为该文档调用Content-Type
时,它会返回text/plain; charset=utf-8
application/json
的JSON响应。我期待的是Content-Type
{"_id":"test-hotel-stat-data","content":[{"hotelcode": "AMB3_LON","hotelname": "Ambassadors Bloomsbury"},{"hotelcode": "ALE1_LON","hotelname": "Alexandra"},{"hotelcode": "ALE1_LON","hotelname": "Alexandra"}]}
{/ 1}}。
我该怎么做?
发表
{"_id":"test-hotel-stat-data","_rev":"3-6c6e26cd5690794886a8dc65308bf078","content":[{"hotelcode":"AMB3_LON","hotelname":"Ambassadors Bloomsbury"},{"hotelcode":"ALE1_LON","hotelname":"Alexandra"},{"hotelcode":"ALE1_LON","hotelname":"Alexandra"}]}
获取
docker run -d -p 5000:5000 --restart=always registry:2
而不是这个,我尝试了PUT然后GET,但结果是一样的。
答案 0 :(得分:5)
我得到了答案。
当我使用Accept:application/json
请求标头调用GET时。有用!
该死的!我怎么想念它!
无论如何,如果您有任何不同的解决方案,请随时发布。