最后怎么解决的?
webview内嵌H5,拍照上传图片闪退到H5首页必现H5独立运行(浏览器,钉钉内打开,手机浏览器,微信开发者工具),上传图片,拍照都没问题。嵌入到webview中,拍完照,点击“确定”或“使用照片”时,会闪退到webview内嵌的H5首页,用户体验非常非常非常不好。这个问题麻烦官方看看,非常着急解决,在线等 问题机型:iOS15.5或iOS15.6的iPhone 13、华为mate30、Xiaomi 12 Pro、红米k60(测试下来安卓明显偏多) AppID:wx34b86af15fa9fb85 以下为小程序代码和h5内的图片上传: webview页面模板: <web-view src="{{ url }}" /> webview页面代码: import config from "../../compatible"; const app = getApp() Page( { data: { url: '', }, onShow: function(options) { wx.hideShareMenu(); if (!config.isLogin()) { // 未登录时先要求登录 wx.navigateTo({ url: config.loginpage+'?loginCallBackFn=showWebPage' }) return } // 已登录直接显示页面 this.showWebPage(); }, showWebPage(){ // 显示嵌入的h5页面并携带相关参数 const userInfo = config.getUserInfo(); this.setData({ url: `https://test-parking.yuexiuproperty.cn/h5/yuexiu-embed/? projectCode=${config.tenantId}&openId=${userInfo.openId}&phone=${userInfo.mobile}&customerCid=${userInfo.cid}&cache=`+ Math.floor((Math.random() * 100) + 1) }); } }) [图片]
2024-07-31楼主 找到解决方案了吗?
小程序有上传照片功能,为啥审核不通过?我们的小程序是访客预约,需要访客上传一张照片进行预约,预约通过后,到现场通过刷脸机刷脸进入厂区,发布小程序一直审核不通过,怎么处理呀? [图片]
2024-02-262023年了,现在实现了吗?
企业微信聊天工具栏如何批量发送消息到会话?企业微信如何实现聊天工具栏批量发送消息到当前会话?如果循环调用sendChatMessag会关闭当前页面,这种情况如何解决?
2023-10-27我是在上传到体验版时,遇到了这个,关闭fiddler就解决了。给大家提供一个思路。
uploadFile报错unable to verify the first certificat?使用wx.uploadFile时,URL采用本机的一个链接API接口;但无法访问;老报unable to verify the first certificat;这是为什么? 代码就是基础的样例代码; wx.uploadFile({ url: 'https://localhost:44325/Server/ServerFood', // 仅为示例,非真实的接口地址 filePath: that.data.Images_Address, name: 'upload', formData: { user: 'test' }, success(res) { console.log('success', res.data, res.statusCode) // do something }, fail(res) { const data = res.data wx.showModal({ title: 'fail', content: 'fail', }) // do something } }) [图片][图片]
2023-09-01