收藏
回答

企业微信内嵌h5页面 中调用launchMiniprogram 跳转微信小程序,报错?

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

请问是什么原因?

回答关注问题邀请回答
收藏

1 个回答

  • 青团社
    青团社
    2023-02-07

    小程序内加载的h5 不支持调用打开其他小程序的API,如需跳回当前小程序,请使用 wx.miniprogram.navigateTo

    2023-02-07
    有用
    回复 2
    • why so serious.
      why so serious.
      2023-02-07
      啊?那请问我要在企业微信的小程序里打开微信的小程序需要怎么做呀
      2023-02-07
      回复
    • 青团社
      青团社
      2023-02-07回复why so serious.
      企微里只能打开企微里的该小程序
      2023-02-07
      回复
登录 后发表内容