我已经阅读了很多文章以找出 this.props.children 的实时用例,但我没有找到我正在寻找的答案。我知道 this.props.children 用于访问 b/w 数据组件的开始和结束标记。但我的问题是为什么我们不能向组件添加道具,而不是写入数据 b/w 开始和结束标记。例如:
<Example>This is data<Example> //can be accessed as this.props.children
can be written as
<Example data="This is data"/> //can be accessed as this.props.data
有人可以用一个实时示例向我解释一下我们可以通过仅使用 this.props.children 来完成某个任务吗?