React Native知識11-Props(屬性)與State(狀態)

來源:互聯網
上載者:User

標籤:

一:Props(屬性)

大多數組件在建立時就可以使用各種參數來進行定製。用於定製的這些參數就稱為props(屬性)。props是在父組件中指定,而且一經指定,在被指定的組件的生命週期中則不再改變

通過在不同的情境使用不同的屬性定製,可以盡量提高自訂群組件的複用範疇。只需在render函數中引用this.props,然後按需處理即可。下面是一個例子:

import React, { Component } from ‘react‘;import { AppRegistry, Text, View } from ‘react-native‘;class Greeting extends Component {  render() {    return (      <Text>Hello {this.props.name}!</Text>    );  }}class LotsOfGreetings extends Component {  render() {    return (      <View style={{alignItems: ‘center‘}}>        <Greeting name=‘Rexxar‘ />        <Greeting name=‘Jaina‘ />        <Greeting name=‘Valeera‘ />      </View>    );  }}AppRegistry.registerComponent(‘LotsOfGreetings‘, () => LotsOfGreetings);

二:State(狀態)

我們使用兩種資料來控制一個組件:props和state。props是在父組件中指定,而且一經指定,在被指定的組件的生命週期中則不再改變。 對於需要改變的資料,我們需要使用state。

一般來說,你需要在constructor中初始化state(譯註:這是ES6的寫法,早期的很多ES5的例子使用的是getInitialState方法來初始化state,這一做法會逐漸被淘汰),然後在需要修改時調用setState方法。

假如我們需要製作一段不停閃爍的文字。文字內容本身在組件建立時就已經指定好了,所以文字內容應該是一個prop。而文字的顯示或隱藏的狀態(快速的顯隱切換就產生了閃爍的效果)則是隨著時間變化的,因此這一狀態應該寫到state中。

import React, { Component } from ‘react‘;import { AppRegistry, Text, View } from ‘react-native‘;class Blink extends Component {  constructor(props) {    super(props);    this.state = { showText: true };    // 每1000毫秒對showText狀態做一次取反操作    setInterval(() => {      this.setState({ showText: !this.state.showText });    }, 1000);  }  render() {    // 根據當前showText的值決定是否顯示text內容    let display = this.state.showText ? this.props.text : ‘ ‘;    return (      <Text>{display}</Text>    );  }}class BlinkApp extends Component {  render() {    return (      <View>        <Blink text=‘I love to blink‘ />        <Blink text=‘Yes blinking is so great‘ />        <Blink text=‘Why did they ever take this out of HTML‘ />        <Blink text=‘Look at me look at me look at me‘ />      </View>    );  }}AppRegistry.registerComponent(‘BlinkApp‘, () => BlinkApp);

執行個體2:

import React, { Component } from ‘react‘;import { AppRegistry, Text, TextInput, View } from ‘react-native‘;class PizzaTranslator extends Component {  constructor(props) {    super(props);    this.state = {text: ‘‘};  }  render() {    return (      <View style={{padding: 10}}>        <TextInput          style={{height: 40}}          placeholder="Type here to translate!"          onChangeText={(text) => this.setState({text})}        />        <Text style={{padding: 10, fontSize: 42}}>          {this.state.text.split(‘ ‘).map((word) => word && ‘??‘).join(‘ ‘)}        </Text>      </View>    );  }}

上面這段代碼就可以實現在輸入框不停輸入內容後,修改state裡面的text內容,而且當調用setState時會重新整理UI,而用組件Text 可以獲得state裡面text屬性的值;方法constructor是構造方法,根據參數都要實現super;

注意:箭頭函數知識點

ES6允許使用“箭頭”(=>)定義函數。立即執行函數可以寫成箭頭函數的形式

// 箭頭函數的例子()=>1v=>v+1(a,b)=>a+b()=>{    alert("foo");}e=>{    if (e == 0){        return 0;    }    return 1000/e;}
var f = v => v;上面的箭頭函數等同於:var f = function(v) {  return v;};

如果箭頭函數不需要參數或需要多個參數,就使用一個圓括弧代表參數部分。

var f = () => 5;// 等同於var f = function () { return 5 };
var sum = (num1, num2) => num1 + num2;// 等同於var sum = function(num1, num2) {  return num1 + num2;};

如果箭頭函數的代碼塊部分多於一條語句,就要使用大括弧將它們括起來,並且使用return語句返回。

var sum = (num1, num2) => { return num1 + num2; }

由於大括弧被解釋為代碼塊,所以如果箭頭函數直接返回一個對象,必須在對象外面加上括弧。

其它相關內容可以見ES裡面的文章介紹;

React Native知識11-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.