HarmonyOS 鸿蒙Next怎么获取到app应用市场的地址,现在我从应用市场复制链接,然后通过浏览器怎么打不开呢,提示只有HarmonyOS 鸿蒙Next以上设备才能查看,但是我的手机就是HarmonyOS 鸿蒙Next系统(https://appgallery.huawei.com/app/detail?id=c)
HarmonyOS 鸿蒙Next怎么获取到app应用市场的地址,现在我从应用市场复制链接,然后通过浏览器怎么打不开呢,提示只有HarmonyOS 鸿蒙Next以上设备才能查看,但是我的手机就是HarmonyOS 鸿蒙Next系统(https://appgallery.huawei.com/app/detail?id=c)
怎么获取到app应用市场的地址,现在我从应用市场复制链接,然后通过浏览器怎么打不开呢,提示只有Next以上设备才能查看,但是我的手机就是Next系统(https://appgallery.huawei.com/app/detail?id=xxx)
2 回复
您好,您参考一下,这种可以跳转到应用详情
import { webview } from '[@kit](/user/kit).ArkWeb';@Entry @Component struct WebComponent { controller: webview.WebviewController = new webview.WebviewController();
build() { Column() { Web({ src: $rawfile(“index.html”), controller: this.controller }) } } }
<!DOCTYPE html>
<html>
<head>
<meta charset=“utf-8”>
<title>测试页面</title>
<script>
function goToLink() {
window.open(‘https://appgallery.huawei.com/app/detail?id=com.cctv.hmnext.cctv5’)
}
</script>
</head>
<body>
<div align=“center”>
<button type=“button” id=“btn_navi” onclick=“goToLink()”>跳转应用市场</button>
</div>
</body>
</html>