callback(event)

callback 是回调函数,只能在 JavasScript 中配置:

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

插件版本 >= 2.0.0

  1. fundebug.init({
  2. callback: function(event) {
  3. console.log(event);
  4. }
  5. });
  • 通过 fundebug 配置
  1. if ("fundebug" in window) {
  2. fundebug.callback = function(event) {
  3. console.log(event);
  4. };
  5. }

其中 event 为上报到 Fundebug 服务器的错误数据,需要的话,您可以使用 callback 函数来查看错误数据,也可以将其发送到其他数据平台。