深度链接允许用户直接跳转到应用内的特定页面。在鸿蒙应用中,你可以在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 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。
深度链接允许用户直接跳转到应用内的特定页面。在鸿蒙应用中,你可以在config.json中配置深度链接,并在代码中处理链接。
参见:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides...
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。