- web-view组件图片无法显示问题?
web-view组件图片无法正常显示 图片在网页中可以正常显示,在开发者工具和真机调试时无法正常显示 [图片] [图片] [图片]
2019-09-13 - 苹果手机video组件无法播放视频?
<video id="videoContext" initial-time="{{videoSchedule.currentTime}}" src="https://xxx.cn/videos/{{video.path}}" controls="{{false}}" bindtimeupdate="getTime" bindprogress="getProgress" bindplay="playAction" bindended="endedAction" bindpause="pauseAction" show-progress="{{false}}"></video> 左边为安卓机,右边是IPhone X IOS12.1.3 左边安卓机器可以正常播放视频,右边无法播放 [图片]
2019-09-03 - appData里面有值,为什么打印是null
onReady: function () { var that = this; wx.getStorage({ key: 'driver', success: function (res) { that.setData({ driver: res.data, groupId: res.data.groupId }) }, }) console.log(this.data.groupId); wx.request({ url: 'http://localhost:8082/wx/getVideoList/', data: { groupId: that.data.groupId }, success(res) { console.log(res) } }) }, [图片] [图片] [图片]
2019-07-11