setHttpBody
布尔类型,默认值为 false。
为了保护隐私,Fundebug 插件默认不会记录 HTTP 请求的 body 参数,如果你需要记录 HTTP 请求的 body 参数的话,可以将setHttpBody设为 true 即可。
- 使用init方法配置(推荐)
插件版本 >= 2.0.0
fundebug.init({
setHttpBody: true
});
- 在 HTML 中配置
<script>
标签中配置 setHttpBody 属性
<script
src="https://js.fundebug.cn/fundebug.2.4.0.min.js"
apikey="API-KEY"
setHttpBody="true"
crossorigin="anonymous"
></script>
- 在 JavaScript 中配置 setHttpBody 变量
if ("fundebug" in window) {
fundebug.setHttpBody = true;
}
当 setHttpBody 设为 true 时,Fundebug 将会收集 HTTP 请求的 body 参数,并过滤掉 password 等隐私数据。