ElasticSearch-head 操作时,报 406错误码

十年热恋 提交于 2021-02-11 07:06:53

 

查询时报错{"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406}

 

 

 

解决方法:

1、进入head安装目录;docker exec -it 名称 bash

2、打开文件夹_site,cd _site/

3、编辑vendor.js  共有两处

  ①. 6886行   contentType: "application/x-www-form-urlencoded

    改成

      contentType: "application/json;charset=UTF-8"

  ②. 7574行 var inspectData = s.contentType === "application/x-www-form-urlencoded" &&

    改成

   var inspectData = s.contentType === "application/json;charset=UTF-8" &&
4、退出容器exit  然后重启

5、重新查询,可以查出数据

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!