我上周就提这个问题了,现在还没解决
移动应用打开微信小程序 Android extMsg始终为{}这个Bug很严重啊!!!
2018-05-29遇到同样的问题
小程序打开APP带的参数在Android中接收到的永远是"{}"<button open-type="launchApp" app-parameter="wechat" binderror="launchAppError">打开APP</button> 在Android中拉起小程序,然后点击中程序中打开APP按钮,带上参数app-parameter="wechat",在Android中Resp中接收到的extMsg的值一直是"{}"
2018-05-24遇到同样问题,点击launchApp的button 回调onResp,但是无法没有app-paramater中的参数
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