- openLocation只传经纬度,以前图片位置也会显示位置信息吧,现在没有显示了?
[图片]
07-22 - wx.chooseMessageFile,没有效果的问题?已配置隐私协议
场景:第一次进入小程序触发wx.chooseMessageFile,没有效果。关闭小程序后重新进入功能正常。体验版和正式版都是这样 wx.chooseMessageFile({ count: 1, //限制选择的文件数量 type: 'file', //非图片和视频的文件,不选默认为all success(res) { const tempFilePaths = res.tempFiles let up_file_list = tempFilePaths.map(item => { return { ...item, process: '' } }) app.uploadFile(up_file_list) app.filesObj = up_file_list[0] } })
01-17 - textarea,苹果手机,无法调用起键盘?
<textarea :class="iptIsFull?'big-textarea':'ipt'" :style="iptIsFull?'bottom:'+iptHeight+'px;':'max-height: 30vh;'" :auto-height="!iptIsFull" @keyboardheightchange="textAreaKeyboardHeightChange" :show-confirm-bar="false" name="question" v-model="question" :maxlength="-1" :adjust-position="false" placeholder="你想和我聊点什么呢"></textarea>
2024-11-23