学习React[四]

受控和非受控组件
目录
1.ref使用
2.受控组件的基本使用
3.受控组件-多输入
4.非受控组件的使用
1.ref使用
import React, { createRef, PureComponent } from 'react'

// 第一步 在类组件constructor 创建this.changeRef = createRef();

// 第二步 给要哪个DOM操作 添加 ref={this.changeRef}

// 第三步 点击按钮 利用 this.changeRef是一个对象 里面的this.changeRef.current找到有ref的DOM

export default class App extends PureComponent {

constructor(props) {

​ super(props);

​ this.changeRef =

学习React[四]最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/10253.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>