- vivo oppo 调用requestFullScreen 无效、失效、没有作用、失败、没反应?
https://vanthink-dev.oss-cn-qingdao.aliyuncs.com/079de7b0b74f5c1061d6eaf21827c514.mp4 1.问题已解决,发上来是为了避免大家重复踩坑 2.问题虽解决,但不知道具体原因,希望能知道问题到底出在哪了 3.解决办法: 卸载微信,重新安装......... 4.问题还包扩设置的样式没有生效以及requestFullScreen无效
2020-09-11 - ios13系统使用video组件全屏后样式会发生错乱
[图片]
2020-06-01 - ec-canvas 安卓部分手机提示无法加载插件?
基础库: 2.10.4 微信: 7.0.13 安卓: 9 内核版本:4.9.112 手机: OPPO K3 代码片段: https://developers.weixin.qq.com/s/PWgnRsmL7xgk [图片] 代码: function setChartData(chart, data) { const option = { grid: { height: '90%', left: '5%', right: '4%', top: '20', containLabel: true }, xAxis: [ { type: 'category', data: Object.keys(data), axisTick: { alignWithLabel: true }, axisLine: { lineStyle: { color:'#fff', } }, axisLabel: { textStyle: { color: '#fff' } } } ], yAxis: [ { type: 'value', axisLabel : { textStyle: { color: '#fff' } }, axisLine: { lineStyle: { color:'#fff', } }, }, ], series: [ { name: '直接访问', type: 'bar', barWidth: '60%', data: Object.values(data), itemStyle: { normal: { label: { show: true, position: 'top', textStyle: { color: '#ad3f61', fontSize: 16, fontWeight: 'bold' } }, color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{ offset: 0, color: "#cb3668" // 0% 处的颜色 },{ offset: 1, color: "#e66a6b" // 100% 处的颜色 }], false) } } } ] } chart.setOption(option); } class Charts extends Component { config = { // 定义需要引入的第三方组件 usingComponents: { 'ec-canvas': '../../components/ec-canvas/ec-canvas' // 书写第三方组件的相对路径 } } state = { ec: {}, info: {}, } componentDidMount() { this.refresh() } refresh(data) { this.Chart.init((canvas, width, height, dpr) => { const chart = echarts.init(canvas, null, { width: width, height: height, devicePixelRatio: dpr // new }) setChartData(chart, data) return chart }); } refChart = node => (this.Chart = node) render () { const { info, mode, canvasStatus, isShowSuccessDialog, tempFilePath, shareConfig, isShowTipDialog } = this.state return ( ) } } export default Charts
2020-04-08 - 临时本地图表使用getImageInfo失败 getImageInfo:fail invalid?
ec-canvas使用 canvasToTempFilePath 生成的本地临时图片 然后调用wx.getImageInfo 失败 提示 getImageInfo:fail invalid 调试基础库: 2.10.4 微信版本: 7.0.11 ios 安卓均能复现 wx.previewImage api 也一样不能调用 const chart = this.$scope.selectComponent('#mychart-dom-save') chart.canvasToTempFilePath({ success: res => { wx.getImageInfo({ src: res.tempFilePath, success: () => { console.log('scussess') }, fail: (res) => { console.log(res,123) } })
2020-04-01 - 小程序如果下载新版本失败的问题
请问如果小程序运行中下载新版本失败后,小程序会不会无限重复下载新版本直到新版本下载成功以及会不会无限触发 UpdateManager.onUpdateFailed这个方法 还有就是UpdateManager.applyUpdate() 能不能在下Failed失败的回调里调用来重启小程序呢?
2018-11-30