wx
.
invoke
(
'launchMiniprogram'
,
{
"appid"
:
"wx062aaa5507909631"
,
// 需跳转的小程序appid
"path"
:
"pages/home/index.html"
,
// 所需跳转的小程序内页面路径及参数。非必填
},
function
(
res
)
{
if
(
res
.
err_msg
==
"launchMiniprogram:ok"
)
{
// 正常
}
else
{
// 错误处理
}
}
);
用的是企业微信这边的js-api跳转微信小程序,想问下链接后拼的参数用何种方式获取?
对应页面onload 方法的第一个参数接收
onload(option){ console.log('参数是', option) }