从当前页面打开另一个小程序
methodName: navigateToMiniProgram
额外参数:
属性 | 类型 | 是否必填 | 默认值 | 描述 |
---|---|---|---|---|
appId | String | 是 | 要打开的小程序 appId | |
path | String | 否 | 打开的页面路径,如果为空则打开首页。path 中 ? 后面的部分会成为 query,在小程序中调用dlt.getLaunchOptions 中可以获取到 query 数据。 | |
extraData | String | 否 | 需要传递给目标小程序的数据,目标小程序可在 App.onLaunch ,App.onShow 中获取到这份数据。 |
success 回调函数
参数
Object res
属性 | 类型 | 描述 |
---|---|---|
success | String | 描述接口调用成功或失败。"true": 成功;"false":失败 |
fail 回调函数
参数
Object res
属性 | 类型 | 描述 |
---|---|---|
success | String | 描述接口调用成功或失败。"true": 成功;"false":失败 |
errMsg | String | 错误信息 |
调用示例
const dlt = window['@transsion/byteh5bridge'];
const canCallDlt = dlt && window.dltms && window.dltms.isMiniShellGame();
if (canCallDlt) {
dlt.callApi('navigateToMiniProgram', {
appId: '1xxxx',
path: 'pages/index/index?a=xxx',
extraData: JSON.stringify({ apple: 'red' }),
success: (res) => {
console.log('success: ', res);
},
fail: (res) => {
console.log('fail: ', res);
},
complete: (res) => {
console.log('complete: ', res);
},
});
}