setHttpBody

布尔类型,默认值为 false。

为了保护隐私,Fundebug 插件默认不会记录 HTTP 请求的 body 参数,如果你需要记录 HTTP 请求的 body 参数的话,可以将setHttpBody设为 true 即可。

  • 使用init方法配置(推荐)

插件版本 >= 2.0.0

  1. fundebug.init({
  2. setHttpBody: true
  3. });
  • 在 HTML 中配置<script>标签中配置 setHttpBody 属性
  1. <script
  2. src="https://js.fundebug.cn/fundebug.2.4.0.min.js"
  3. apikey="API-KEY"
  4. setHttpBody="true"
  5. crossorigin="anonymous"
  6. ></script>
  • 在 JavaScript 中配置 setHttpBody 变量
  1. if ("fundebug" in window) {
  2. fundebug.setHttpBody = true;
  3. }

当 setHttpBody 设为 true 时,Fundebug 将会收集 HTTP 请求的 body 参数,并过滤掉 password 等隐私数据