HarmonyOS基本工具封装——拦截H5微信、支付宝支付和自定义H5全局拦截

前言

简介

鸿蒙基本库封装,提升鸿蒙开发效率

安装

dart 复制代码
ohpm install @peakmain/library

ToastManager升级,不再需要传入UIContext

设置全局上下文

如果不传UIContext,一定要在EntryAbility.ets调用

kotlin 复制代码
InitUtils.getInstance(this.context)//初始化全局上下文
示例代码
typescript 复制代码
//默认情况
new ToastManager()
  .showNormalMessage("正常提示")
//成功情况
new ToastManager()
  .showSuccessMessage("成功提示")
//错误提示
new ToastManager()
  .showErrorMessage("错误提示")

拦截H5微信、支付宝支付

  • 在entry模块的module.json5文件中添加配置具体标签路径如下:module-> querySchemes
json 复制代码
    "querySchemes": [
      "alipays",
      "weixin"
    ],

2. 自定义H5全局拦截

在 EntryAbility.ets 目录下,通过设置 urlIntercept 实现自定义拦截逻辑

typescript 复制代码
  InitUtils.getInstance(this.context)
      .urlIntercept( (url: string) => {
        if (!bundleManager.canOpenLink(url)) {
          //new ToastManager(this.getUIContext()).showErrorMessage("未安装目标应用")
          return HandleResult.CONSUMED
        }
        const openLinkOptions: OpenLinkOptions = {
          appLinkingOnly: false,
        };
        (getContext(this) as common.UIAbilityContext).openLink(url, openLinkOptions).then(() => {
        }).catch((err: Error) => {

        })
        return HandleResult.CONSUMED
      },'alipays://platformapi',"weixin://wap/pay?")

urlIntercept 方法参数说明

参数 类型 描述
handleUrl (url: string) => HandleResult 拦截 URL 关键词后执行的方法,默认返回 HandleResult.NOT_CONSUME 表示不处理。
searchSting Array<string> 拦截的 URL 关键字,例如 alipays://platformapiweixin://wap/pay?
相关推荐
程序猿阿伟11 分钟前
《AI赋能鸿蒙Next,打造极致沉浸感游戏》
人工智能·游戏·harmonyos
guo_zhen_qian1 小时前
HarmonyOS命令行工具
华为·harmonyos
HarmonyOS_SDK8 小时前
意图框架习惯推荐方案,为用户提供个性化内容分发
harmonyos
行十万里人生10 小时前
从 SQL 语句到数据库操作
数据库·sql·华为od·华为·oracle·华为云·harmonyos
对自己不够狠12 小时前
HarMonyOS使用Tab构建页签
前端·华为·harmonyos
时光凉忆13 小时前
鸿蒙开发 - 自定义组件 和 组件通信的方法
harmonyos·鸿蒙开发
鸿蒙自习室14 小时前
鸿蒙UI开发——基于onTouch事件实现表情选择胶囊
ui·华为·harmonyos
time_silence14 小时前
快速上手 HarmonyOS 应用开发
华为·harmonyos
程序猿阿伟15 小时前
《AI赋能鸿蒙Next,开启智能关卡设计新时代》
人工智能·harmonyos·关卡设计