iOSとAndroidの両方でReactNativeを使用してアプリを作成しましたListView
。リストビューに有効なデータソースを入力すると、画面の下部に次の警告が出力されます。
警告:配列またはイテレータの各子には、一意の「キー」プロップが必要です。のrenderメソッドを確認してください
ListView
。
この警告の目的は何ですか?メッセージの後、彼らはこのページにリンクします。そこでは、react nativeとは関係がなく、Webベースのreactjsとは関係のない完全に異なることが説明されています。
私のListViewは、次のステートメントで構築されています。
render() {
var store = this.props.store;
return (
<ListView
dataSource={this.state.dataSource}
renderHeader={this.renderHeader.bind(this)}
renderRow={this.renderDetailItem.bind(this)}
renderSeparator={this.renderSeparator.bind(this)}
style={styles.listView}
/>
);
}
私のデータソースは次のようなもので構成されています。
var detailItems = [];
detailItems.push( new DetailItem('plain', store.address) );
detailItems.push( new DetailItem('map', '') );
if(store.telefon) {
detailItems.push( new DetailItem('contact', store.telefon, 'Anrufen', 'fontawesome|phone') );
}
if(store.email) {
detailItems.push( new DetailItem('contact', store.email, 'Email', 'fontawesome|envelope') );
}
detailItems.push( new DetailItem('moreInfo', '') );
this.setState({
dataSource: this.state.dataSource.cloneWithRows(detailItems)
});
そして、ListView-Rowsは次のようなものでレンダリングされます。
return (
<TouchableHighlight underlayColor='#dddddd'>
<View style={styles.infoRow}>
<Icon
name={item.icon}
size={30}
color='gray'
style={styles.contactIcon}
/>
<View style={{ flex: 1}}>
<Text style={styles.headline}>{item.headline}</Text>
<Text style={styles.details}>{item.text}</Text>
</View>
<View style={styles.separator}/>
</View>
</TouchableHighlight>
);
私にはまったくナンセンスだと思われる警告を除いて、すべてが正常に機能し、期待どおりに機能します。
「DetailItem」クラスにキープロパティを追加しても問題は解決しませんでした。
これは、「cloneWithRows」の結果として実際にListViewに渡されるものです。
_dataBlob:
I/ReactNativeJS( 1293): { s1:
I/ReactNativeJS( 1293): [ { key: 2,
I/ReactNativeJS( 1293): type: 'plain',
I/ReactNativeJS( 1293): text: 'xxxxxxxxxx',
I/ReactNativeJS( 1293): headline: '',
I/ReactNativeJS( 1293): icon: '' },
I/ReactNativeJS( 1293): { key: 3, type: 'map', text: '', headline: '', icon: '' },
I/ReactNativeJS( 1293): { key: 4,
I/ReactNativeJS( 1293): type: 'contact',
I/ReactNativeJS( 1293): text: '(xxxx) yyyyyy',
I/ReactNativeJS( 1293): headline: 'Anrufen',
I/ReactNativeJS( 1293): icon: 'fontawesome|phone' },
I/ReactNativeJS( 1293): { key: 5,
I/ReactNativeJS( 1293): type: 'contact',
I/ReactNativeJS( 1293): text: 'xxxxxxxxx@hotmail.com',
I/ReactNativeJS( 1293): headline: 'Email',
I/ReactNativeJS( 1293): icon: 'fontawesome|envelope' },
I/ReactNativeJS( 1293): { key: 6, type: 'moreInfo', text: '', headline: '', icon: '' } ] },
1つのキーが示すように、各レコードにはキープロパティがあります。警告はまだ存在します。
DetailItem
の場合、キーが必要です。それらがすでに一意のキーを持っている場合は、他のレンダリングメソッドを表示する必要があります(renderHeader, renderDetailItem, renderSeparator
)。それらは正常に機能しており、データソースが何らかの方法で変更されるまで(たとえば、行が削除されるまで)期待されます。その時点で、Reactは、一意の識別子がない場合、それらをどう処理するかを知りません。