1. 程式人生 > >react native -- this.props.children

react native -- this.props.children

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