#鸿蒙通关秘籍#隐式Want是什么以及如何在鸿蒙应用中使用?

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
RAM风绘彩虹

隐式Want在发起组件启动时不会具体指定目标的abilityName,而通过定义的actions、entities、uri和type属性,让系统自动匹配合适的应用来处理任务。示例如下:

javascript import { Want } from '@kit.AbilityKit';

let wantInfo: Want = { action: 'ohos.want.action.search', entities: [ 'entity.system.browsable' ], uri: 'https://www.test.com:8080/query/student', type: 'text/plain', };

系统会基于这些要素匹配已安装应用中的相应组件,从而触发操作。

分享
微博
QQ
微信
回复
1天前
相关问题
#鸿蒙学习大百科#什么Want
321浏览 • 1回复 待解决