请问解决了吗?
wx-open-launch-app安卓无法唤醒app?苹果正常拉起,但是安卓后台运行时也能正常拉起,进程被杀死后会弹窗提示即将离开微信的弹窗,点击允许后没有任何反应,请问哪里有问题?
2022-09-25解决了吗?我目前也遇到了这个问题
wx-open-launch-app 无法冷启动唤醒安卓APP?你好, 想请教下,android应用杀掉进程后,使用这个wx-open-launch-app是无法唤醒app ,IOS没问题,然后android热启动唤醒也没问题, 目前测试 android 7.0 android 9.0 android 10 android 11 都无法冷启动唤醒APP 热启动都没问题。 来个人啊
2022-09-25请问楼主,关于安卓杀掉进程,就无法唤醒app的问题,是否已经就解决?
网页开发“微信开放标签”无法唤醒app测试微信开放标签功能“ wx-open-launch-app” ,检测到应用但无法正常唤起应用详见截图和视频 截图: [图片][图片][图片] 视频:https://test.exexm.com:8060/test-wx-open-tag.mp4 [视频] 代码: <wx-open-launch-app id="launch-btn" appid="xxx" extinfo="your-extinfo" > <script type="text/wxtag-template"> <style>.btn { padding: 12px }</style> <button class="btn">App内查看<button> </script> </wx-open-launch-app> <script> var btn = document.getElementById('launch-btn'); btn.addEventListener('launch', function (e) { alert("launch-success") console.log('success'); }); btn.addEventListener('error', function (e) { alert(JSON.stringify(e.detail)) console.log('fail', e.detail); }); </script>
2022-09-23是否与安卓app的配置有关呢?IOS是可以正常唤醒的
wx-open-launch-app无法唤醒安卓app?1、安卓(小米、华为) 2、情况:安卓app在后台运行,则app可以唤醒,如果杀掉app的进程,安卓app就无法唤醒
2022-09-23这个问题后来怎么解决的呢
WeixinJsBridge exec time是什么意思?[图片][图片]
2022-08-10后来怎么解决的呢
wx-open-launch-app ios15 使用无效?系统版本: ios 15 微信版本: 8.0.6 描述:微信环境内打开 h5 ,点击按钮跳转至 app 功能,在系统 ios 15 && 微信版本 8.0.6 下看不到按钮,无法进行跳转点击操作。(React) <wx-open-launch-app id={id} appid={appid} extinfo={extinfo}> <script type="text/wxtag-template"> <button>我是按钮,我消失了</button> </script> </wx-open-launch-app>
2022-08-08楼主问题解决了吗
微信网页跳转app ,checkJsApi wx-open-launch-app:false ?[图片][图片][图片][图片][图片][图片][图片][图片] 测试链接:https://test.im-dangdang.com/h5/activity/moponActivity/test 开放平台账号:dangdang@aladdin-holdings.com 公众平台appid : wx394248922854ae74 开放平台appid: wx6e4c52531e587589 开放平台原始ID: gh_ab43ccb209e9
2022-08-07咋解决的
wx-open-launch-app 在VUE中怎么处理?https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html 提示玩 config:ok 之后,打开APP按钮 就消失了 <wx-open-launch-app id="launch-btn" appid="your-appid" extinfo="your-extinfo" > <template> <style>.btn { padding: 12px }</style> <button class="btn">App内查看<button> </template> </wx-open-launch-app>
2022-08-03各位大佬,请问你们都咋解决的啊
wx.saveImageToPhotosAlbum无效?wx.saveImageToPhotosAlbum手机打开开发调试才能保存,而且是100%的,但是关闭开发调试之后就没有任何提示,就提示了一个正在保存图片,然后就没有然后了,有人知道是什么原因吗
2021-12-12体验版,我一打开调试,或者打开再关闭调试就可以保存图片了,这是为什么?
saveImageToPhotosAlbum无法保存图片saveimg:function(){ var codeurl = this.data.codeurl codeurl='https:'+codeurl wx.showLoading({ title: '正在保存...', }) console.log(codeurl,'这里的codeurl是https://image.yzgcw.com/QR/1565020674834.png') wx.getSetting({ success(res) { if (!res.authSetting['scope.writePhotosAlbum']) { wx.authorize({ scope: 'scope.writePhotosAlbum', success() { console.log(111) wx.downloadFile({ url: codeurl, success: function (res) { console.log(222) let path = res.tempFilePath wx.saveImageToPhotosAlbum({ filePath: path, success: function (res) { wx.hideLoading() console.log(222) wx.showToast({ title: '保存成功', }) }, complete: function (res) { wx.hideLoading() } }) } }) } }) }else{ console.log(444) wx.downloadFile({ url:codeurl, success:function(res){ console.log(555) let path = res.tempFilePath console.log(path) wx.saveImageToPhotosAlbum({ filePath: path, success: function (res) { wx.hideLoading() console.log(666) wx.showToast({ title: '保存成功', }) }, complete: function (res) { console.log(res) wx.hideLoading() } }) } }) } } }) }
2021-12-12