当我尝试调用返回 map 方法结果的方法时,出现以下错误,Warning: Functions are not valid as a React child. This may happen if you return a Component instead of <Component /> from render
但我不知道为什么。这是我的代码:
renderAlbums() {
return this.state.albums.map(album => <Text>{ album.title }</Text>);
}
render() {
return (
<View>
{ this.renderAlbums }
</View>
);
}
但是我上面的代码我没有看到问题来自哪里。但是当我尝试在我的render()
方法中创建一个变量时,通过我的map()
方法,一切正常:
render() {
const c=this.state.albums.map(album => <Text>{ album.title }</Text>);
return (
<View>
{ c }
</View>
);
}
我想了解为什么它不起作用。当我在renderAlbums()
这里调用 render方法时<View>{ this.renderAlbums }</View>
。
对我来说更奇怪的是,当我尝试用括号调用renderAlbums()
类似的东西时<View>{ this.renderAlbums() }</View>
,它会起作用。