一样的问题,请问找到解决办法了嘛?
canvas签名功能,在部分机型上,笔触错乱、偏移canvas签名功能,在部分机型上,笔触错乱、偏移。目前发现在一些折叠屏上会出现这种情况,如:vivo X Fold3 也有些非折叠屏的安卓机复现,未收集到机型 如下图 [图片]
04-28请问怎么解决的,遇到同样问题
operateWXData:fail data exceed max size 报错?scan() { let _this = this wx.chooseImage({ count: 1, success: async function(res) { uni.showLoading({ title: '加载中', mask: true }) var tempImagePath = res.tempFilePaths var fsm = wx.getFileSystemManager() // console.log(fsm.readFileSync(tempImagePath[0],'base64')) // console.log(res) try { const invokeRes = await wx.serviceMarket.invokeService({ service: 'wx79ac3de8be320b71', api: 'OcrAllInOne', data: { // 需要一个HTTP URL 的文件 // img_url: res.tempFilePaths[0], img_data: fsm.readFileSync(tempImagePath[0], 'base64'), data_type: 2, ocr_type: 1 }, }) uni.hideLoading() // console.log('invokeService success', invokeRes) _this.info.userName = invokeRes.data.idcard_res.name.text _this.info.userNumber = invokeRes.data.idcard_res.id.text console.log(invokeRes.data.idcard_res.name.text) console.log(invokeRes.data.idcard_res.id.text) } catch (err) { uni.hideLoading() console.error('invokeService fail', err) _this.$refs.uToast.show({ title: err, type: 'error', }) } }, fail: function(res) {}, complete: function(res) {}, }) }, 调用微信orc识别 , 在微信开发者工具没问题,在ios端 报错 "operateWXData:fail data exceed max size","err_code":"0" [图片]
04-25请问最后怎么解决的,一样得情况
安卓机image显示不了网络图片?开发者工具里正常显示,真机调试安卓机不显示,体验版苹果手机正常显示,安卓手机不显示。真机调试的时候偶尔报错,如下:[图片]
2024-07-26同样的情况,好几个安卓机出现了这个问题。请问下最后咋解决的
image组件网络图片不显示,wx.previewImage可以显示1.目前是image触发了error事件,错误提示是图片404,实际上不是404; 2.wx.previewImage预览却可以显示出来,外部访问也可以,就是image组件无法显示。 3.不是所有机型如此,而是部分机型如此。目前不知道解决办法。
2024-07-26进入横屏就会报这个错
routeDone with a webviewId 133 that is not ?routeDone with a webviewId 133 that is not the current page 项目一打开就报这个
2024-04-19我是在iOS测试,返回上一个页面后仍然有声音,onUnload里面已经把参数都重置了也不行,onUnload方法也执行了
live-player为什么切到后台仍有声音?live-player组件,点击胶囊按钮退出或者上滑退出,小程序运行在后台,为什么还在播放声音呢? 接入的TRCT实时音视频,在onHide中写对live-plater的音频流静音但是无效,在返回小程序的时候才静音成功 <view v-for="(item,index) in TRTCDATA.playerList" :key="item.id"> <live-player style="width: 100vw;height: 100vh;" class="player" :id="item.id" :data-userid="item.userID" :data-streamid="item.streamID" :data-streamtype="item.streamType" :src="item.src" mode="live" autoplay="true" :mute-audio="item.muteAudio" :mute-video="item.muteVideo" orientation="vertical" min-cache="1" max-cache="2" sound-mode="speaker" @statechange="_playerStateChange" @fullscreenchange="_playerFullscreenChange" @netstatus="_playerNetStatus" @audiovolumenotify="_playerAudioVolumeNotify" /> </view> onHide(() => { TRTCDATA.playerList = list = TRTCDATA.TRTCexample.setPlayerAttributes(TRTCDATA.playerList[0].id, {'muteAudio': true}) })
2024-04-19就我遇到这个问题么?严重影响开发调试啊
无法正常编译会白屏?[图片] 同样的代码,编译时经常会卡主导致模拟器白屏,卡主时Launch time这条日志不会出现,所以应该是编译存在问题,而且现在的版本出现了wx.getSystemInfoAsync的使用提示,但是我确认代码中没有使用该api
2023-12-12同样的问题,开发时模拟器白屏
do not support getSystemInfo?Current Wechat version do not support asynchronous getSystemInfo. "wx.getSystemInfoAsync" will be finished by synchronous implementation. 没有使用getSystemInfo,只用了wx.getSystemInfoSync()。重新编译的时候卡着了,无法渲染页面 [图片]
2023-10-13不支持,只能页面引入
使用js动态创建一个弹窗(vue组件)?每个消息订阅入口添加提示蒙层。不想每个地方引入组件操作,想通过js调用动态为当前页面添加组件页面。 浏览器端可以使用document实现,小程序端如何实现??
2023-08-01换成chooseMedia接口
微信公众号调用wx.chooseImage 部分手机刷新页面?chooseImage() { let that = this; wx.chooseImage({ count: 1, // 默认9 sizeType: ["compressed"], sourceType: ["album", "camera"], success: function (res) { let localIds = res.localIds; // 返回选定照片的本地ID列表,localId可以作为img标签的src属性显示图片 console.log(localIds,'调用chooseImage接口成功') wx.uploadImage({ localId: localIds.toString(), // 需要上传的图片的ID,由chooseImage接口获得 isShowProgressTips: 1, // 进度提示 success: function (res) { console.log(localIds,'调用uploadImage接口成功') }, fail: function (res) { console.log(localIds,'调用uploadImage接口失败') }, }); } [图片][图片][图片][图片] 出现问题手机:苹果13 系统 ios 16.1.1
2023-05-04