消息推送
qh.isOpenPushSync
解释:获取当前小程序消息推送功能的状态。
方法参数:无
返回参数说明:
参数 | 类型 | 说明 |
---|---|---|
isOpenPush | Boolean | true: 已打开,false: 未打开 |
示例:
- 在 html 文件中
<div>
<se-button type="primary" @click="isOpenPushSync">isOpenPushSync</se-button>
</div>
- 在 js 文件中
Page({
methods: {
isOpenPushSync() {
const result = qh.isOpenPushSync();
console.log('isLogiisOpenPushSyncnSync', result);
}
}
});
qh.openPush
解释:打开当前小程序的消息推送功能。
方法参数:Object object
object
参数说明:
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
success | Function | 否 | - | 接口调用成功的回调函数 |
fail | Function | 否 | - | 接口调用失败的回调函数 |
complete | Function | 否 | - | 接口调用结束的回调函数(调用成功、失败都会执行) |
success返回参数:无
fail返回参数:Object Object
参数名 | 类型 | 描述 |
---|---|---|
errCode | Integer | 错误类型 |
errMsg | String | 错误原因 |
complete返回参数:undefined || Object Object
当调用成功时候,返回undefined,返回Object时候的结构为:
参数名 | 类型 | 描述 |
---|---|---|
errCode | Integer | 错误类型 |
errMsg | String | 错误原因 |
示例:
- 在 html 文件中
<div>
<se-button type="primary" @click="openPush">openPush</se-button>
</div>
- 在 js 文件中
Page({
methods: {
openPush(e) {
qh.openPush({
success: _ => {
console.log("success")
},
fail: err => {
console.log(err);
},
complete: res => {
console.log(res)
}
});
},
}
});