gpt4 book ai didi

reactjs - 是什么导致 apollo 客户端渲染组件出现 "React.Children.only expected to receive a single React element child."错误

转载 作者:行者123 更新时间:2023-12-03 13:34:43 25 4
gpt4 key购买 nike

为什么向 View 添加另一个第二个元素会导致错误“React.Children.only Expected to receive a single React element child.”

我有一个 React Native 组件,它使用 apollo 客户端调用 graphQL 端点来获取数据。如果我让它只渲染 View ,它就可以工作,但是当我添加可触摸的突出显示时,我收到错误。我能否在 View 中包含多个根元素,或者使其成为具有复合元素的 View ?我尝试将其添加为 Button 这也引发了不同的错误。不过添加文本似乎没问题。

class Games extends Component {

constructor(props) {
super(props);
}

render() {
const { loading, allGames } = this.props.data;

if (loading) {
return <Text>Loading</Text>;
} else if (allGames) {
return (
<View style={styles.outer}>

//adding this touchable highlight causes the error
<TouchableHighlight>Get More</TouchableHighlight>

{ allGames.map(game => (
<View key={game.id} style={styles.wrapper}>
<Text style={styles.header}>{game.title}</Text>
</View>
))}
</View>
);
}

return (
<Text>No results</Text>
);
}
}
Games.propTypes = {
data: PropTypes.shape({
loading: PropTypes.bool.isRequired,
allGames: PropTypes.array,
}).isRequired,
};

最佳答案

根据https://facebook.github.io/react-native/docs/touchablehighlight.html ,

TouchableHighlight 必须有一个子级(不能为零个或多个)。您可以尝试添加子元素。

<TouchableHighlight>
<Text>Get More</Text>
</TouchableHighlight>

关于reactjs - 是什么导致 apollo 客户端渲染组件出现 "React.Children.only expected to receive a single React element child."错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40683168/

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