notify(name, message, option)

使用 fundebug.notify()方法,可以将自定义的错误信息发送到 Fundebug

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

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

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

  • metaData: 其他自定义信息

示例:

  • 不带 metaData
  1. if ("fundebug" in window) {
  2. fundebug.notify("Test", "Hello, Fundebug!");
  3. }
  • 带 metaData
  1. if ("fundebug" in window) {
  2. fundebug.notify("Test", "Hello, Fundebug!", {
  3. metaData: {
  4. company: "云麒",
  5. location: "厦门"
  6. }
  7. });
  8. }

fundebug.notify()上报的错误的类型”notification”,即type属性的值为”notification”。

TypeScript

notify方法的TypeScript定义如下:

  1. export function notify(
  2. name: string,
  3. message: string,
  4. options?: IOptions
  5. ): undefined;
  6. interface IOptions {
  7. metaData?: object;
  8. }