消息推送

qh.isOpenPushSync

解释:获取当前小程序消息推送功能的状态。

方法参数:无

返回参数说明

参数类型说明
isOpenPushBooleantrue: 已打开,false: 未打开

示例

  • 在 html 文件中
  1. <div>
  2. <se-button type="primary" @click="isOpenPushSync">isOpenPushSync</se-button>
  3. </div>
  • 在 js 文件中
  1. Page({
  2. methods: {
  3. isOpenPushSync() {
  4. const result = qh.isOpenPushSync();
  5. console.log('isLogiisOpenPushSyncnSync', result);
  6. }
  7. }
  8. });

qh.openPush

解释:打开当前小程序的消息推送功能。

方法参数:Object object

object参数说明

参数名类型必填默认值说明
successFunction-接口调用成功的回调函数
failFunction-接口调用失败的回调函数
completeFunction-接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数:无

fail返回参数:Object Object

参数名类型描述
errCodeInteger错误类型
errMsgString错误原因

complete返回参数:undefined || Object Object

当调用成功时候,返回undefined,返回Object时候的结构为:

参数名类型描述
errCodeInteger错误类型
errMsgString错误原因

示例

  • 在 html 文件中
  1. <div>
  2. <se-button type="primary" @click="openPush">openPush</se-button>
  3. </div>
  • 在 js 文件中
  1. Page({
  2. methods: {
  3. openPush(e) {
  4. qh.openPush({
  5. success: _ => {
  6. console.log("success")
  7. },
  8. fail: err => {
  9. console.log(err);
  10. },
  11. complete: res => {
  12. console.log(res)
  13. }
  14. });
  15. },
  16. }
  17. });