当前位置:   article > 正文

uniapp的app端推送功能,不使用unipush

uniapp的app端推送功能,不使用unipush

1:推送功能使用htmlPlus实现:地址HTML5+ API Reference (html5plus.org)

效果图:

代码实现:

  1. <template>
  2. <view class="content">
  3. <view class="text-area">
  4. <button @click="createMsg">本地消息</button>
  5. </view>
  6. <button @click="openquanxian">跳转系统授权管理页</button>
  7. <button @click="getquanxian">获取 APP 授权设置</button>
  8. </view>
  9. </template>
  10. <script setup>
  11. import {
  12. ref,
  13. onMounted,
  14. nextTick
  15. } from 'vue';
  16. onMounted(() => {
  17. })
  18. const openquanxian = () => {
  19. uni.openAppAuthorizeSetting({
  20. success(res) {
  21. console.log(res)
  22. }
  23. })
  24. }
  25. const getquanxian = () => {
  26. let info = uni.getAppAuthorizeSetting()
  27. console.log('log', info);
  28. }
  29. // #ifdef APP-PLUS
  30. let ClientInfo = ref()
  31. let AllMessage = ref()
  32. const createMsg = () => {
  33. plus.push.createMessage('我是一条本地消息', '', {
  34. title: 'xxx科技',
  35. })
  36. ClientInfo.value = plus.push.getClientInfo()
  37. console.log('log', ClientInfo.value);
  38. AllMessage.value = plus.push.getAllMessage()
  39. console.log('log', AllMessage.value);
  40. // plus.push.setAutoNotification(true);
  41. }
  42. plus.push.addEventListener('click', function(success) {
  43. console.log('logsss', success);
  44. });
  45. // #endif
  46. </script>
  47. <style>
  48. .content {
  49. display: flex;
  50. flex-direction: column;
  51. align-items: center;
  52. justify-content: center;
  53. }
  54. .logo {
  55. height: 200rpx;
  56. width: 200rpx;
  57. margin-top: 200rpx;
  58. margin-left: auto;
  59. margin-right: auto;
  60. margin-bottom: 50rpx;
  61. }
  62. .text-area {
  63. display: flex;
  64. justify-content: center;
  65. }
  66. .title {
  67. font-size: 36rpx;
  68. color: #8f8f94;
  69. }
  70. </style>

请注意要实现消息推送功能,前提是应用的通知权限要打开

以上代码已实现从应用内跳到应用权限页,在实际工作中用户刚打开应用就要判断应用的通知权限是否打开,uniapp中有相关方法,如果获取到的值是没有打开的状态就要显示弹框询问是否打开通知权限,点击确定就跳转到应用权限页

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/571057
推荐阅读
相关标签
  

闽ICP备14008679号