阅读(4132)
赞(10)
setHttpBody
2019-02-20 15:50:52 更新
为了保护隐私,Fundebug插件默认不会记录HTTP请求的body参数,如果你需要记录HTTP请求的body参数的话,可以将setHttpBody设为true即可。
- 在HTML中配置<script>标签中配置setHttpBody属性
<script src="https://js.fundebug.cn/fundebug.1.5.1.min.js" rel="external nofollow"
apikey="API-KEY"
setHttpBody=true></script>
- 在JavaScript中配置setHttpBody变量
if ("fundebug" in window) {
fundebug.setHttpBody = true;
}
当setHttpBody设为true时,Fundebug将会收集HTTP请求的body参数,并过滤掉password等隐私数据。