在SectionList中,如何隐藏空节(数据:[])的节头



我使用的是react native的SectionList,无法隐藏数据集空部分的sectionheader。我只想显示不为空的节的标题和行。

这就是我所做的:

<SectionList
renderSectionHeader={({ section }) => (
section.data.length > 0 ? this._renderHeader(section.title) : (null)
)}
...
/>
<SectionList>
renderSectionHeader={({ section: { title, data } }) =>
data.length > 0 && <Text>{title}</Text>
}
...
</SectionList>

相关内容

  • 没有找到相关文章

最新更新