我们在HarmonyOS开发中,如何深度链接(Deep Linking)?

阅读 738
1 个回答

深度链接允许用户直接跳转到应用内的特定页面。在鸿蒙应用中,你可以在config.json中配置深度链接,并在代码中处理链接。

参见:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides...

// config.json
{
  "abilities": [
    {
      "name": "com.example.harmonyos.deeplinkability.DeepLinkAbility",
      "label": "$string:app_name",
      "description": "$string:mainability_description",
      "visible": true,
      "launchType": "standard",
      "directLaunch": true,
      "deepLinkPath": "/example/deeplink",
      "icon": "$media:icon",
      "labelId": "string/app_name"
    }
  ]
}

// DeepLinkAbility.ets
@Entry
@Component
struct DeepLinkAbility {
  private params: URLParams;

  onInit() {
    this.params = URLParams.from(this.abilitySlice.getLaunchWant());
  }

  build() {
    Column() {
      Text('Deep Link Received')
        .fontSize(20);
      Text('Path: ${this.params.path}')
        .fontSize(18);
      Text('Query: ${this.params.query}')
        .fontSize(18);
    }
  }
}

本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进