gpt4 book ai didi

react-native - 如何判断 React Native ListViewDataSource 是否为空?

转载 作者:行者123 更新时间:2023-12-04 16:25:46 28 4
gpt4 key购买 nike

我正在传递一个 ListViewDataSource down 作为 Prop 并希望子元素检测它是否为空。

在 Chrome 中调试,我看到 _cachedRowCount属性设置为 0当列表为空时。

有没有更好的方法来检测 ListView 是否为空?

最佳答案

试试 getRowCount() , 例如:

let ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
let dataSource = ds.cloneWithRows(this.state.rows || [])

console.log(dataSource.getRowCount())

关于react-native - 如何判断 React Native ListViewDataSource 是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34852631/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com