我想在react-native中创建一个两层(部分>>条目)listview,类似于来自UIExplorerApp的ListViewPagingExample,但是使用blob data / json来填充部分信息。另外,我对要传递给cloneWithRowsAndSections的参数值感到困惑。
无法从文档(https://facebook.github.io/react-native/docs/listview.html#content)中找到有关上述主题的任何内容,但只提及可能的内容。一些例子会有所帮助。
谢谢
答案 0 :(得分:1)
您可以找到ListViewDataSource here的源代码。
cloneWithRows方法定义为:
cloneWithRows(
dataBlob: Array<any> | {[key: string]: any},
rowIdentities: ?Array<string>
)
而cloneWithRowsAndSections是:
cloneWithRowsAndSections( dataBlob:任何, sectionIdentities:?数组, rowIdentities:?数组&gt; )
sectionIdentities
参数记录为:
这是部分的标识符数组。即。 ['s1','s2',...]。 如果没有提供,则假设dataBlob的键是 部分身份。