miniprogram-recycle-view 导致页面卡死,我使用方式不对吗?
// 声明
let weatherContext: ReturnType<typeof createRecycleContext> | null = null;
// 初始化
weatherContext = createRecycleContext({
id: 'weatherId',
dataKey: 'recycleList',
page: this,
itemSize: {
width: transformRpx('480rpx'),
height: transformRpx('140rpx')
}
})
// 添加数据,在这一步直接卡死
weatherContext && weatherContext.append(data.data)