ios使用nativejs请求消息通知权限,回调里如何拿到授权结果
const UNUserNotificationCenter = plus.ios.import('UNUserNotificationCenter');
const center = UNUserNotificationCenter.currentNotificationCenter();
plus.ios.invoke(center,'requestAuthorizationWithOptions:completionHandler:',4 | 2,(res)=>{
console.log(res);
})
res是undefined,那授权的结果怎么获取了
卡卡LL
- 发布:2024-06-06 11:11
- 更新:2024-06-06 12:54
- 阅读:141
卡卡LL (作者)
目前app基于uni app开发,使用了plus,请问这个回调里面没发拿到结果吗,我看官方文档也,有涉及到handler的都传的是null,没看到hanlder里应该怎么写,麻烦了,就卡在这个地方了
2024-06-06 14:15
DCloud_App_Array
回复 卡卡LL: uni-app项目也是支持uts插件的。
2024-06-06 14:22
卡卡LL (作者)
回复 DCloud_App_Array: 好的,谢谢
2024-06-06 14:24
卡卡LL (作者)
回复 DCloud_App_Array: 又要打扰了,看了一下,uts目前对我们这种没有原生基础的有点复杂,通过plus,这种有handler的是没法拿到回参吗?感觉这个地方打通了,那目前开发就都打通了的感觉,主要是官方示例都没涉及到,handler都传的null
2024-06-06 15:18