react

初识react.js

2021-09-09  本文已影响0人  又菜又爱分享的小肖

安装

npm i react react-dom

坑点: 小伙伴再直接安装时是不会生成node_modules, 需要 npm init -y进行初始化生成package.json文件, 在进行安装就可以了

导入

<script src="./node_modules/react/umd/react.development.js"></script>
<script src="./node_modules/react-dom/umd/react-dom.development.js"></script>
    // 创建元素节点
    // 1. 元素名称
    // 2. 元素属性 传对象
    // 3. 元素内容
    let title = React.createElement('li', null, 'hellow react');
     // 1.要渲染的元素
     // 2.要渲染到那个元素里面 
     ReactDOM.render(title, document.querySelector('#root'));

安装脚手架

npx create-react-app 项目名

JSX的使用

产生原因

由于通过createElement()方法创建的React元素有一些问题, 代码比较繁琐,结构不直观,无法一眼看出描述的结构,不优雅,用户体验不好。

概述

JSX是JavaScript XML 的简写,表示在JavaScript代码中编写HTML格式的代码
优势:声明式语法更加直观, 与HTML结构相同,降低了学习成本,提升开发效率。

为什么在脚手架中可以使用JSX语法
注意点

JSX语法

条件渲染
let isLoading = true
let loading = ()=>{
    if(isLoading){
        return <div>Loading...</div>
    }
    return <div>加载完成</div>
}
列表渲染
let arr = [{
  id: 1,
  name: '肖'
}, {
  id: 2,
  name: '小'
}, {
  id: 3,
  name: '笑'
}]
let arrMap = () => {
  return (
    <ul>
      {arr.map(item => <li key={item.id}>{item.name}</li>)}
    </ul>
  )
}
样式处理

在style里面通过对象的方式传递数据

let arrMap = () => {
  return (
    <ul>
      {arr.map(item => <li key={item.key} style={{ "color": "red", "backgroundColor": "pink" }}> {item.name} </li>)}
    </ul>
  )
}

不过这种方式比较麻烦,不方便阅读,而且还会导致代码比较繁琐,权重性高

类名-className

创建css文件编写样式代码

.container {
    text-align: center
}

在js中进行引入,然后设置类名即可

import './css/index.css'

<li className='container' key={item.id} style={{'color': 'red',"backgroundColor": 'pink'}}>{item.name}</li>

React组件

组件的创建方式

函数创建组件
function Hello() {
  return <div>这是第一个函数组件</div>
}
类组件
class Hello extends React.Component {
  render() {
    return (
      <div>这是第一个类组件</div>
    )
  }
}

React的事件处理

class Hello extends React.Component {
  clickHandle(e) {
    console.log('肖帅哥点我了');
  }
  render() {
    return (
      <div onClick={this.clickHandle}>这是第一个类组件</div>
    )
  }
}

事件对象

class Hello extends React.Component {
  clickHandle(e) {
    console.log(e.nativeEvent);
  }
  render() {
    return (
      <div><button onClick={this.clickHandle}>这是第一个类组件</button></div>
    )
  }
}

有状态和无状态组件

State和SetState

state基本使用
export default class extends React.Component {
    constructor(){
        super()

        // 第一种初始化方式
        this.state = {
            count : 0
        }
    }
    // 第二种初始化方式
    state = {
        count:1
    }
    render(){
        return (
            <div>计数器 :{this.state.count}</div>
        )
    }
}
setState() 修改状态

抽取事件处理函数

原因

在ES6箭头函数中知道,箭头函数本身是没有this的,它只会去向外一层去寻找。
在JSX中写的事件处理函数可以找到this,因为外层是render方法,在render方法里面的this刚好指向的是当前实例对象。

事件绑定this指向

箭头函数
class App extends Component {
  state = {
    count: 1
  }
  add() {
    this.setState({
      count: this.state.count + 1
    })
  }
  render() {
    return (
      <div>
        <div>计数器 :{this.state.count}</div>
        <button onClick={() => this.add()}>+1</button>
      </div>
    )
  }
}
利用bind方法

利用原型bind方法是可以更改函数里面this的指向的,所以我们可以在构造中调用bind方法,然后把返回的值赋值给我们的函数即可

class App extends Component {
  constructor() {
    super()
    this.state = {
      count: 1
    }
    // 通过bind方法改变了当前函数中this的指向
    this.add = this.add.bind(this);
  }
  add() {
    this.setState({
      count: this.state.count + 1
    })
  }
  render() {
    return (
      <div>
        <div>计数器 :{this.state.count}</div>
        <button onClick={this.add}>+1</button>
      </div>
    )
  }
}

class的实例方法

  // 事件处理程序
  add = () => {
    console.log('事件处理程序中的this:', this)
    this.setState({
      count: this.state.count + 1
    })
  }

表单处理

受控组件
class App extends Component {
  state = {
    txt: ''
  }
  txtChanget = (e) => {
    this.setState({
      txt: e.target.value
    })
  }
  render() {
    return (
      <div>
        <input type="text" value={this.state.txt} onChange={this.txtChanget} />
      </div>
    )
  }
}
多表单元素优化
class App extends Component {
  state = {
    txt: '',
    isChecked: ''
  }
  txtChanget = ({ target }) => {
    let value = target.type == 'checkbox' ? target.checked : target.value;
    this.setState({
      [target.name]: value
    })
  }
  render() {
    console.log(this.state.txt, this.state.isChecked)
    return (
      <div>
        <input type="text" value={this.state.txt} onChange={this.txtChanget} name="txt" />
        <input type="checkbox" value={this.state.isChecked} name="isChecked" onChange={this.txtChanget} />
      </div>
    )
  }
}

非受控组件

class App extends Component {
  txtRef = React.createRef();
  getTxt = () => {
    console.log(this.txtRef.current.value)
  }
  render() {
    return (
      <div>
        <input type="text" ref={this.txtRef} />
        <button onClick={this.getTxt}></button>
      </div>
    )
  }
}

React组件进阶

组件通讯

组件是独立且封闭的单元,默认情况下,只能使用组件自己的数据。在组件化过程中,我们将一个完整的功能拆分成多个组件,以更好的完成整个应用的功能。而在这个过程中,多个组件之间不可避免的要共享某些数据。为了实现这些功能,就需要打破组件的独立封闭性,让其与外界沟通,这个过程就是组件通讯

组件的props
<Hello name="肖"></Hello>

接收数据:函数组件通过 参数 props接收数据,类组件通过 this.props接收数据

const Hello = (props) => {
  return <div>{props.name}</div>
}
class Hello extends React.Component {
  render() {
    return (
      <div>{this.props.name}</div>
    )
  }
}
特点
class Hello extends React.Component {
  constructor(props) {
    super(props)
  }
  render() {
    return (
      <div>{this.props.name}</div>
    )
  }
}

组件通讯的三种方式

父组件传递数据给子组件
子组件传递数据给父组件
// 子组件
class Hello extends React.Component {
  state = {
    name: '肖'
  }
  goApp = () => {
    this.props.getMsg(this.state.name);
  }
  render() {
    return (
      <div>
        <button onClick={this.goApp}></button>
      </div>
    )
  }
}

// 父组件
class App extends Component {
  getChildMsg = (msg) => {
    console.log(msg);
  }
  render() {
    return (
      <div>
        <Hello getMsg={this.getChildMsg}></Hello>
      </div>
    )
  }
}
兄弟组件传递
// 兄弟组件
class Child1 extends React.Component {
  render() {
    return (
      <h1>计数器:{this.props.count}</h1>
    )
  }
}
class Child2 extends React.Component {
  child2Add = () => {
    this.props.add(1)
  }
  render() {
    return (
      <button onClick={this.child2Add}>+1</button>
    )
  }
}

// 父组件
class App extends Component {
  state = {
    count: 0
  }
  add = (count) => {
    this.setState({
      count: this.state.count + count
    })
  }
  render() {
    return (
      <div>
        <Child1 count={this.state.count}></Child1>
        <Child2 add={this.add}></Child2>
      </div>
    )
  }
}

Context

如果出现层级比较多的情况下(例如:爷爷传递数据给孙子),我们会使用Context来进行传递
作用: 跨组件传递数据

const { Provider, Consumer } = React.createContext();
class Child extends React.Component {
  render() {
    return (
      <div>子组件
        <Consumer>
          {data => <span>{data}</span>}
        </Consumer>
      </div>
    )
  }
}
// 父组件
class App extends Component {
  render() {
    return (
      <Provider value="pink">
        <div>
          <Child></Child>
        </div>
      </Provider>
    )
  }
}

props效验

安装
npm install --save prop-types
import PropTypes from 'prop-types'
// 子组件
class Child extends React.Component {
  render() {
    return (
      <div>
        {this.props.name}
      </div>
    )
  }
}
// 不要写在前面,因为在初始化前是没有Child这个组件的
Child.propTypes = {
  name: PropTypes.string
}
//父组件
class App extends React.Component {
  render() {
    return (
      <div>
        <Child name="xin"></Child>
      </div>
    )
  }
}
常规约束规则

props的默认值

import PropTypes from 'prop-types'
// 子组件
class Child extends React.Component {
  render() {
    return (
      <div>
        {this.props.name}
      </div>
    )
  }
}
// 不要写在前面,因为在初始化前是没有Child这个组件的
Child.defaultProps = {
  name: '哈哈'
}
//父组件
class App extends React.Component {
  render() {
    return (
      <div>
        <Child></Child>
      </div>
    )
  }
}
上一篇 下一篇

猜你喜欢

热点阅读