React Natvie 参数 函数 对象 类

函数组件只需要接受props参数并且返回一个React元素,class组件需要继承component,还需要创建render 并且返回React元素,语法看起来麻烦点。

类组件有this,有生命周期,有状态state。

import React,{Component} from 'react'
import {View,Text} from 'react-native'
export default class App extends Component{
    render(){
        return(
                
                    Hello Word
                
        )
    }
}

函数组件没有this,没有生命周期,没有状态state。

import React,{Component} from 'react'
import {View,Text} from 'react-native'
const SiteNameComponent = (props) => {
   return (
      
         Hello Word 
      
   )
}

props理解

props 和我们OC中的属性比较相似,是用来组件之间单向传值用的。

  1. 不需要提前声明,组件传值;
//classA组件
export class classA extends Component {
  render() {
    return (Hello {this.props.name}!);
  }
}

//classB组件
export class classB extends Component {
  render() {
    return (
      
        //调用classA组件,并对name变量赋值
        
      
    );
  }
}

2.组件中必须包含某种变量类型的某变量,就要用到PropTypes做声明;
3.可以设置默认值;

export class classA extends Component {
  static propTypes: {
    //设置title变量的类型
    title: React.PropTypes.string.isRequired,
  },
static defaultProps = {  
   title:'Hello Word',  
 }  
  render() {
     return (
        
            {this.props.title} 
        
     );
  }
}

state

react中的函数组件通常只考虑负责UI的渲染,没有自身的状态没有业务逻辑代码,是一个纯函数。它的输出只由参数props决定,不受其他任何因素影响。为了解决给函数组件加状态,可以使用Hooks技术实现。
1)useState 使用

import React, { Component, useState } from "react";
import { View,StyleSheet, TextInput,Text } from "react-native";

const UselessTextInput = () =>  {
//使用Hooks技术添加value状态,并设置默认值
  const [value,setValue] = useState('rfradsfdsf')

  return (
    
      {
          setValue(text)
        }}
        value={value}
      />
      {value}
   
  );
}
const styles = StyleSheet.create({
  container: {
    paddingTop: 50,
    backgroundColor: '#ffffff',
    borderBottomColor: '#000000',
    borderBottomWidth: 1,
  },
});
export default UselessTextInput;

参考:

React Native入门 - 函数组件,class组件 ,props ,state - 简书

React Native 参数传递 - 简书

https://www.cnblogs.com/iuniko/p/16532021.html

react-navigation:onWillFocus/onDidFocus/onWillBlur/onDidBlur/componentWillUnmount等周期_Mars-xq的博客-CSDN博客

React Native 生命周期函数详解 - 简书

react native基础知识(三) - 哔哩哔哩

你可能感兴趣的:(react,native,react.js,javascript)