2016-03-15 93 views
0

下面的代碼是在本地做出反應我 疑問演示片平均約三點是什麼」 ......這在這一塊代碼 感謝本地做出反應,在什麼「......這

的意義
render: function() { 
     return (
      <View style={styles.container}> 
      <View 
       style={styles.center} 
       {...this._panResponder.panHandlers} 
      > 
       <Text>Like</Text> 
       <Text>You selected: {this.state.selected}</Text> 
       <Animated.View 
       style={[styles.likeContainer, this.getLikeContainerStyle()]} 
       > 
       <View style={styles.borderContainer} /> 
       <View style={styles.imgContainer}> 
        {this.getImages()} 
       </View> 
       </Animated.View> 
      </View> 
      </View> 
     ); 
     } 

回答

0

如果你想獲得...操作符的句柄,請參考這個奇妙的例子。 https://facebook.github.io/react/docs/jsx-spread.html

如果您不知道將傳遞給組件的道具,可以使用傳播屬性。三個點...在JSX中稱爲展開運算符。

運算符(或擴展運算符)的...已支持ES6中的數組。還有一個ECMAScript提案的對象休息和傳播屬性。你可以利用這一點,並通過道具而不明確寫出它們。