| 客户端 | Android | iOS |
|---|---|---|
| 支持说明 | 支持 | 支持 |
import { PushNotification } from "@yl/super-jssdk";
PushNotification.clearPushBadgeNumber();
| 参数 | 类型 | 作用 |
|---|---|---|
| resolve | Function | 清除通知成功回调 |
| reject(err) | Function | 清除通知失败回调,err为详细错误信息,是一个json对象,例如:{"errCode":-1,"errMsg":"出错啦"} |
PushNotification.clearPushBadgeNumber()
.then(res => {
console.log('success', res);
})
.catch(err => {
console.log('fail', res);
})