wx.config 和wx.agentConfig 均已成功
调用
wx.invoke('launchMiniprogram', {
"appid" : "xxxx", // 需跳转的小程序appid
"path" : "pages/login/index.html", // 所需跳转的小程序内页面路径及参数。非必填
}, function(res) {
alert(JSON.stringify(res)+'launchMiniprogram成功了!!!!!!')
if(res.err_msg == "launchMiniprogram:ok") {
// 正常
} else {
// 错误处理
}
}
报错 : error_code:2 launchMiniprogram: fail function is unsupported
请问是什么原因?
小程序内加载的h5 不支持调用打开其他小程序的API,如需跳回当前小程序,请使用 wx.miniprogram.navigateTo