这问题很难修复吗?
switchTab跳转会先闪到第一个tab,然后是指定的tab第一次加载页面,点击跳转二级页,然后跳转底部的tab第二个页面 这时,页面会先闪到第一个底部tab页,然后自动到指定的tab页面
2023-08-02这个问题还没修复呢
急!IOS机型下switchTab会额外触发一次navigateBack在wx.onAppRoute监听页面跳转方式, 通过上面代码片段依次点击tab2 - 点击这里 - 点击这里, 就可以弹出额外触发的navigateBack 有视频 开发者工具和安卓无法复现, 进在ios上能复现
2023-08-02没人遇到这问题吗?
wx.canvasToTempFilePath 输出的图片大小尺寸变形[图片] 原始图片是 400x500 的网格图,就是红色框内的样子。 红色框内是在 canvas 上绘制的等比例原图,蓝色框内是通过 wx.canvasToTempFilePath 输出的图片分片,但是生成的图片比例大小明显和 canvas 不一致,是哪里的问题? <canvas type="2d" id="canvas" style="width:{{containerW}};height:{{containerH}}"></canvas> <view class="grid" style="width:{{containerW}};height:{{containerH}}"> <view class="cell" wx:for="{{pieces}}" style="width:{{item.width}};height:{{item.height}}"> <image src="{{item.src}}" /> </view> </view> Page({ data: { containerW: '', containerH: '', pieces: [], }, onReady() { const cols = 4; const rows = 5; const containerW = wx.getSystemInfoSync().windowWidth * .5; const containerH = containerW * rows / cols; this.setData({ containerW: `${containerW}px`, containerH: `${containerH}px`, }); wx .createSelectorQuery() .select('#canvas') .fields({ node: true }) .exec((res) => { const canvas = res[0].node; const ctx = canvas.getContext('2d'); const img = canvas.createImage(); canvas.width = 400; canvas.height = 500; img.onload = () => { ctx.drawImage(img, 0, 0); const promises = []; const cellW = containerW / cols; const cellH = containerH / rows; for (let row = 0; row < rows; row++) { for (let col = 0; col < cols; col++) { promises.push(new Promise((resolve, reject) => { wx.canvasToTempFilePath({ x: col * cellW, y: row * cellH, width: cellW, height: cellH, canvas, fileType: 'jpg', success: res => resolve({ width: `${cellW}px`, height: `${cellH}px`, src: res.tempFilePath, }), fail: res => reject(new Error(res.errMsg)), }); })); } } Promise.all(promises).then(pieces => this.setData({ pieces })); }; img.src = 'pic.png'; }); }, });
2021-05-07谁帮忙@下官方人员
movable-view 组件 bindchange 回调不会触发目标数值当设置 movable-view 的 x 为 -750 时,bindchange 会持续调用,但最终会停在 x = -749.9,而不是 -750。 测试下来只有 2.11.2/2.12.0 的基础库版本有这问题,2.11.2 之前的版本都能触发到 -750。 [图片]
2020-07-10