Skip to content

发送消息

方法名

sendMessage

用法

  • 用法如下:
    js
    module.sendMessage({
      params: {
          msgType: 1,
          arg1: 1,
          arg2: 1,
          params: "",
          data: ""
      },
      //成功返回函数
      success: (res) => {
        console.log(res);
      },
      //失败返回函数
      fail: (res) => {
        console.log(res)
      },
      //接口调用完成返回函数,不管成功还是失败都会返回
      complete: (res) => {
        console.log(res)
      }
    })
    js
    module.sendMessage({
      params: {
        msgType: 1,
          arg1: 1,
          arg2: 1,
          params: "",
          data: ""
      },
      //成功执行的函数
      success: (res) => {
        console.log(res)
      },
      //失败执行的函数
      fail: (res) => {
        console.log(res)
      },
      //接口调用完成返回函数,不管成功还是失败都会返回
      complete: (res) => {
        console.log(res)
      }
    })
  • 参数说明
    参数名参数类型是否必填默认值参数描述
    paramsObject参数配置
    params.msgTypeInteger事件类型,具体事件类型可参考事件类型配置
    params.arg1Integer0扩展参数1
    params.arg2Integer0扩展参数2
    params.paramsString业务参数
    params.dataString附带数据
    successFunction执行成功的函数
    failFunction执行失败的函数
    completeFunction执行完成的函数,不管成功还是失败都会执行

回调

  • 示例
    json
    {
        "data": {},
        "message": "",
        "code": 0
    }
  • 回调说明:
    参数名参数类型参数描述
    messageString消息提示
    dataObject数据对象
    codeInteger返回类型,0.成功,其他:失败