中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
卡片点击跳转主应用时,主应用如何接收来自卡片的数据?
微信扫码分享
//卡片中代码 Text("跳转主应用") .onClick(()=>{ postCardAction(this,{ action:"router", bundleName: 'com.lingmou.myapplication', abilityName: 'EntryAbility', params: { message: 'testForRouter' // 自定义要发送的message } }) }) //在主应用EntryAbility中的onCreate接收参数,参数为parameters下的params。是个string类型的,需要自己转为json。 onCreate(want: Want, launchParam: AbilityConstant.LaunchParam): void { console.log("==========want:"+JSON.stringify(want)) }