HarmonyOS 如何使用手机系统自带的浏览器打开url?

HarmonyOS  如何使用手机系统自带的浏览器打开url?

HarmonyOS
7天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

module.json5文件:

"skills": [ 
{ 
  "entities": [ 
  "entity.system.home", 
  "entity.system.browsable" 
  ], 
  "actions": [ 
  "action.system.home", 
  "ohos.want.action.viewData" 
  ], 
  "uris": [ 
  { 
    "scheme": "https", 
  "host": "www.harmonyOS.com", 
  "port": "8080", 
  // prefix matching 
  "pathStartWith": "query", 
  } 
  ] 
} 
]

2:index.ets文件。

import common from '@ohos.app.ability.common'; 
import Want from '@ohos.app.ability.Want'; 
import { BusinessError } from '@ohos.base'; 
 
 
let context = getContext(this) as common.UIAbilityContext; 
let wantInfo: Want = { 
 
  "action": 'ohos.want.action.viewData', 
  "entities": [ 'entity.system.browsable' ], 
  "uri": "https://www.harmonyOS.com", 
} 
 
 
 
@Entry 
@Component 
struct Index27 { 
  @State message: string = '跳转'; 
 
 
  build() { 
    Row() { 
      Column() { 
        Text(this.message) 
          .fontSize(50) 
          .fontWeight(FontWeight.Bold) 
          .onClick(async ()=>{ 
            context.startAbility(wantInfo).then(() => { 
              // ... 
            }).catch((err: BusinessError) => { 
              // ... 
            }) 
          }) 
      } 
      .width('100%') 
    } 
    .height('100%') 
  } 
}
分享
微博
QQ
微信
回复
7天前
相关问题
HarmonyOS跳转系统浏览器打开网页报错
517浏览 • 1回复 待解决
HarmonyOS 启动默认浏览器
376浏览 • 1回复 待解决
服务卡片webview如何跳转系统浏览器
7718浏览 • 2回复 待解决
HarmonyOS 如何浏览器唤起app
335浏览 • 1回复 待解决
浏览器下载文件如何导入鸿蒙
7106浏览 • 1回复 待解决
有谁知道如何拉起浏览器应用
1694浏览 • 1回复 待解决
HarmonyOS 浏览器不能通过scheme拉起app
310浏览 • 1回复 待解决