遇到了相同问题,安卓打开小程序后,scene为1069,按文档这个场景值是可以通过launchApp按钮返回app的,但是点击按钮后报错,errMsg为: invalid scene
Android APP打开小程序后为何无法返回我们APP打开小程序后,完成操作,通过launchApp无法正常返回到APP原页面,还在微信小程序页面中,具体代码如下 Android:客户端代码 if (resp.getType() == ConstantsAPI.COMMAND_LAUNCH_WX_MINIPROGRAM) { WXLaunchMiniProgram.Resp launchMiniProResp = (WXLaunchMiniProgram.Resp) resp; String extraData =launchMiniProResp.extMsg; // 对应JsApi navigateBackApplication中的extraData字段数据 finish(); } } catch (Exception e) { // TODO: handle exception e.printStackTrace(); } } 小程序代码: [代码]<button open-type="launchApp" app-parameter="wechat" binderror="launchAppError">打开APP</button>[代码] [代码] [代码] [代码] [代码]
2018-05-24