codecamp

notify

notify(name, message, option)

使用notify,可以将自定义的错误信息发送到Fundebug

name: 错误名称,参数类型为字符串

message: 错误信息,参数类型为字符串

option: 可选对象,参数类型为对象,用于发送一些额外信息,比如:

  • metaData: 其他自定义信息

示例:

  • 不带metaData
if ("fundebug" in window) {
    fundebug.notify("Test", "Hello, Fundebug!")
}
  • 带metaData
if ("fundebug" in window) {
   fundebug.notify("Test", "Hello, Fundebug!",
   {
        metaData:
       {
            company: "云麒",
            location: "厦门"
       }
   })
}

notify主要用于测试,它发送的错误每次都会报警邮件,这样可能会给您造成困扰。为了避免重复报警,请使用notifyError记录错误,这样同一个错误将只会在错误数达到阈值(10, 100, 100...)的时候报警。


notifyError
Vue.js
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

接入插件

NPM

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }