React Native 快速入門之認識Props和State

來源:互聯網
上載者:User

標籤:

眼下React Native(以後簡稱RN)越來越火,我也要投入到學習當中。對於一個前端來說,還是有些難度。因為本人覺得這是一個App開發的領域,自然是不同。編寫本文的時候,RN的版本為0.21.0。我們馬上以代碼進入今天的學習。

‘use strict‘;import React, {  AppRegistry,  Component,  StyleSheet,  Text,  View} from ‘react-native‘;class Hello extends Component {  render() {    return (      <View>          <Text>{ this.props.title}</Text>          <Text>{ this.props.text}</Text>      </View>    );  }}class HelloComponent extends React.Component{    constructor (props) {      super(props);      this.state = {         appendText: ‘‘      };    }    _setText() {
this.setState({appendText: ‘ Native!‘}); } render() { return ( <View> <Text onPress={this._setText.bind(this)}> {this.props.text + this.state.appendText} </Text> </View> ); }}class learn01 extends Component { render() { const pros = { text: ‘hi‘, title: ‘title‘ } return ( <View> <View style={{height:30}} /> <Hello {...pros} /> <HelloComponent text="React"/> </View> ); }}

 

簡要分析:

  1. 所謂props,就是屬性傳遞,而且是單向的。
  2. 屬性多的時候,可以傳遞一個對象,文法為{...xx},這是es6的新特性。
  3. React靠一個state來維護狀態,當state發生變化則更新DOM。

 

今天到此為止,下次見。

React Native 快速入門之認識Props和State

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.