import * as wxopensdk from '@tencent/wechat_open_sdk';
let context = getContext(this) as common.UIAbilityContext;
let launchMiniProgramReq = new wxopensdk.LaunchMiniProgramReq;
launchMiniProgramReq.userName = userName;
launchMiniProgramReq.path = 'pages/test/index?id=984&url=https://xx.xx.com&type=alert';
launchMiniProgramReq.miniProgramType = miniProgramType;
let success = await WXApi.sendReq(context, launchMiniProgramReq);
鸿蒙应用拉起微信小程序,使用的事都是sdk的API,传入appid可以正常拉起小程序首页,但是想到指定的页面,传了path有拼query,页面提示“暂无可用的的小程序数据”,图片如下,麻烦看看是什么原因?
这是一个已知问题,我们会在后续版本中进行修复
再追问两个问题:
1. 接入现在的sdk, 在鸿蒙应用中使用openLink是否有支持,以及在web中使用 location.href = openLink是否支持?
2. 接入现在的sdk, 分享到微信小程序是否支持?