收藏
回答

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)
回答关注问题邀请回答
收藏

1 个回答

  • 观众
    观众
    2021-11-24

    我自己来回答吧,卡死的原因是transformRpx 返回的是字符串数字,至于为什么字符串数字会导致页面卡死就不知道为什么了。

    2021-11-24
    有用 1
    回复
登录 后发表内容