官方文档:元服务规格
目录标题
什么是元服务
特征
- 免安装
- 分包
- 预加载
- 老化和更新机制
第一个元服务-案例介绍
创建项目
源码
cpp
@Entry
@Component
struct WidgetCard {
build() {
Stack() {
Button('click me')
}
.width('100%')
.height('100%')
.onClick(() => {
postCardAction(this, {
"action": 'router', //router:代表跳转到指定的Ability
"abilityName": 'EntryAbility',//action为router时,abilityName必填,代表跳转到哪个页面
"params": { //额外参数
"message": 'Hello params'
}
});
})
}
}