我也是这个问题,我三个同事都是这个问题,官方还不修复
开发工具忽然预览不了?开发工具能显示预览成功,但手机端没有将程序推上来,mac端预览弹出不来,然后试一下真机调试,同样出不来,已排除掉网络问题。
2022-12-16有没有没处理下啊
recycle-view 为什么在加载前几页不会出现屏幕跳动多加载几页之后就会闪跳?recycle-view batch="{{batchSetRecycleData}}" width="{{width}}" height="{{height}}" id="recycleId" bindscrolltolower="bindscrolltolower" >
/view> /recycle-item> /recycle-view> //滚动到底部监听,分页加载 bindscrolltolower(e) { console.log('滚动到底部----'); // if (this.postflg) { // this.postflg = false;//请求完成前不再更改页码请求接口 this.data.pageNo++; this.GetData(); // } }, onLoad: function(options) { wx.setNavigationBarTitle({ title: '精装图库' }); //设置标题栏名称 var than =this; let height = getApp().globalData.systemInfo.windowHeight; let width = getApp().globalData.systemInfo.windowWidth; than.rows = createRecycleContext({ id: 'recycleId', dataKey: 'rows', page: than, itemSize: { width: 175, height: 117 } }) than.setData({ height: height, width: width }); than.GetData(); // than.rows.update(beginIndex, list) // than.rows.destroy() }, 2020-08-13