- canvas隐藏后再显示不渲染
第一次进入分页 [图片] 切换分页后再次进入 [图片]
2019-04-05 - 无限发起request请求
onLoad: function (options) { var that = this that.setData({ orderNums: options.orderNum }); wx.request({ url: 'https://apich.xiaoxiaowu.info/report/getHezuoshangPayImg', method: 'POST', header: { 'content-type': 'application/x-www-form-urlencoded' }, data: { openId: wx.getStorageSync('openId'), orderNum: options.orderNum }, success(res) { console.log(res.data) if(res.data.error == 0) { that.setData({ src: res.data.pay_qrcode, price:res.data.price }) } console.log(that.data); } }) }, [图片]
2019-04-04 - 字符串转数组
[图片]
2019-04-03 - 定时器
if (wx.getStorageSync('timeLength')) { console.log('已输入生产日期') that.setData({ timeLength: wx.getStorageSync('timeLength') }) var time = that.data.timeLength var timer = setInterval(function () { time-- var day = (Math.floor(time / 60 / 60 / 24) > 0) ? Math.floor(time / 60 / 60 / 24) : 0 var hour = Math.floor((time - Math.floor(time / 60 / 60 / 24) * 60 * 60 * 24) / 60 / 60) var minute = Math.floor((time - Math.floor(time / 60 / 60 / 24) * 60 * 60 * 24 - Math.floor((time - Math.floor(time / 60 / 60 / 24) * 60 * 60 * 24) / 60 / 60) * 60 * 60) / 60) var second = Math.floor(time - Math.floor(time / 60 / 60 / 24) * 60 * 60 * 24 - Math.floor((time - Math.floor(time / 60 / 60 / 24) * 60 * 60 * 24) / 60 / 60) * 60 * 60 - Math.floor((time - Math.floor(time / 60 / 60 / 24) * 60 * 60 * 24 - Math.floor((time - Math.floor(time / 60 / 60 / 24) * 60 * 60 * 24) / 60 / 60) * 60 * 60) / 60) * 60) if (that.data.dayNum <= 0) { that.setData({ dayNum: 0 }) } if (that.data.hourNum <= 0) { that.setData({ hourNum: 0 }) } if (that.data.minuteNum <= 0) { that.setData({ minuteNum: 0 }) } if (that.data.secondNum <= 0) { that.setData({ secondNum: 0 }) } day = day > 9 ? day : '0' + day hour = hour > 9 ? hour : '0' + hour minute = minute > 9 ? minute : '0' + minute second = second > 9 ? second : '0' + second wx.setStorageSync('timeLength', time) that.setData({ timeLength: wx.getStorageSync('timeLength'), dayNum: day, hourNum: hour, minuteNum: minute, secondNum: second }) }, 1000) } 刚进入页面时时间减少不正常(+2秒-1秒) 跑一段时间后又正常了
2019-04-03 - 开发者工具
[图片]
2019-04-02 - JSON.parse()
[图片] request 回调不让使用JSON.parse()方法吗
2019-04-02 - canvas.drawImage刚进入页面时图片不加载点击页面才显示
- 当前 Bug 的表现(可附上截图) [图片] - 预期表现 [图片] 代码片段:https://developers.weixin.qq.com/s/M7ZPYdmI7S7T
2019-03-29 - 图片旋转与自适应
外层view宽度已知为690rpx; 里面图片(手机拍照)要求宽高比不变(自适应) 逆时针旋转90°放在view中 能实现吗
2019-03-27 - camera组件bug
- 当前 Bug 的表现(可附上截图) [图片] - 预期表现 [图片] - 提供一个最简复现 Demo https://developers.weixin.qq.com/s/t0czSbme7176 问题机型:iOS 安卓机无此问题
2019-03-26 - camera
主页面下含有14个子页面(相机页) 相机页下含有一个 画图页 画图完成后返回图片给主页显示 每次缓存四张图片后 第五个相机页就无法跳转进去 或 无法跳转到画图页 测试后发现跟缓存没有关系 [图片]
2019-03-26