错误现象:
使用 Elasticsearch Head 查看“数据浏览”时,右侧不出数据,使用浏览器F12查看后,发现 406 Not Acceptable 错误。
解决方法
1、进入 es-head 安装目录;
2、cd _site/
3、编辑 vendor.js 共有两处
将 6886行 contentType: "application/x-www-form-urlencoded"
修改为 contentType: "application/json;charset=UTF-8"
然后再将 7573行 var inspectData = s.contentType === "application/x-www-form-urlencoded"
&& 修改为 var inspectData = s.contentType === "application/json;charset=UTF-8" &&
4、强制刷新浏览器验证。
原文地址: https://blog.csdn.net/qq_38446413/article/details/105977224