加100毫秒延时后可大概率(毕竟延时不靠谱)规避此问题
小程序 ios端调起相机与相册无反应 只有第一次onload可以调起 之后需重新进入小程序onLoad(option) { this.activityId = option.activityId; this.sourceType = option.isCamera == 'false' ? ['album'] : ['camera']; wx.chooseMedia({ count: 1, sourceType: this.sourceType, mediaType: ['image'], success: (data) => { let file = data.tempFiles[0]; let filePath = file.tempFilePath; file.path = file.tempFilePath; file.type = "image"; file.thumb = file.path; file.url = file.path; this.imgSrc = filePath; this.file = file; }, fail(err) { uni.navigateBack(); }, complete() { }, }) },
02-26加100毫秒延时后可大概率(毕竟延时不靠谱)规避此问题
ios端小程序页面非第一次onLoad调起相机不起作用?// 小程序 ios端调起相机与相册无反应 只有第一次onload可以调起 之后进入页面切onload方法执行后未调起相机 需重新进入小程序可可以正常调起相机 <template> <view class="publish"> aaaaaaa <image mode="widthFix" class="img" :src="imgSrc"></image> </view> </template> <script> export default { data() { return { text: '', imgSrc: '', file: null, activityId: '', isShowTextMaxLength: false, sourceType: null, } }, onShow(option) { }, onLoad(option) { wx.chooseMedia({ count: 5, sourceType: ['album'], mediaType: ['image'], success: (data) => { let file = data.tempFiles[0]; let filePath = file.tempFilePath; file.path = file.tempFilePath; file.type = "image"; file.thumb = file.path; file.url = file.path; this.imgSrc = filePath; this.file = file; }, fail(err) { uni.navigateBack(); }, complete() { }, }) }, methods: { } } </script> <style scoped lang="scss"> </style>
02-26所有问题都是没有解决方法的嘛
真机调试报错checkPointFullReportRule err: unsupport ?按了“发送”键,一直提示“不能发送空值”,但已在输入框中输入了信息 [图片] 真机调试报警告⚠ [wxapplib]] checkPointFullReportRule err: unsupport Error: unsupport [图片] 手机相关信息,微信版本 8.0.34 [图片] 开发者工具相关信息 [图片] [图片] 按键“不能发送控制”的js代码 var index = res.currentTarget.dataset.index; var menu = this.data.menu; if (!menu[index].value) { showHintModal("不能发送空值"); appendLogs("不能发送空值", this); return; } sendBleMsg(menu[index].value, this, false); },
2023-12-15