react native -- this.props.children

来源:互联网 发布:资源数据库建设 编辑:程序博客网 时间:2024/05/02 01:25

this.props.children 

指的是传入到组件的孩子个数

如Test组件

<Test>

  <View><Text>1</Text></View>

  <Text>2</Text>

  <Text>3</Text>

</Test>

那么这里的 var content = this.props.children;

console.log(content.length)   //   3

0 0