- wx.chooseMedia底部没触底
[图片] 代码片段 https://developers.weixin.qq.com/s/K4YjAZme7Ul6 手机型号:荣耀20 系统版本号:安卓10 微信版本号:7.0.20
2020-11-20 - 在iOS11机型,系统14.0.1下播放语音无声音?微信版本7.0.17,基础库2.11.3
HTML代码: <view class="bubble voice" bindtap="playVoice('https://learn-english-number.ifcode.com/gameover.mp3')"> <view class="icon other-voice"></view> </view> JS代码: playVoice: function(url,index) { const context = wx.createInnerAudioContext() context.autoplay = true context.src = url context.onPlay(() => { console.log('play', url) }) context.onError((res) => { console.error('play.error',res) }) context.onEnded(() => { console.log('end') }) }
2020-10-20 - pc端输入汉字后拼音也显示到输入框上
https://developers.weixin.qq.com/miniprogram/dev/component/textarea.html [图片] pc端微信打开小程序也是同样的,如上图输入信息,会把拼音也显示出来,手机端正常 <view class="box"> <textarea cursor-spacing="15px" v-model="textMsg" :show-confirm-bar="true" :auto-height="true" /> </view> <view class="send" :class="isVoice?'hidden':''" @tap="sendText"> <view :class="textMsg ? 'btn-active' : 'btn'">发送</view> </view>
2020-05-14 - 真机上语法报错,不知如何寻bug
真机上显示:Uncaught SyntaxError: Invalid or unexpected token:1:4581 [图片] IDE 无此错误:显示正常 [图片] 数据是通过input提交过来的: [图片] 发布大概十几个之后出现这个问题,数据应该都是合法的,后台也没异常 [图片] 求大大们解答~
2017-12-27