React -- 组件的三大属性(state、props、refs)
2021/10/11 23:18:15
本文主要是介绍React -- 组件的三大属性(state、props、refs),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
欢迎学习交流!!!
持续更新中…
文章目录
- 组件(实例)的三大属性
- state 属性
- props 属性
- refs 属性
- React中的事件处理
组件(实例)的三大属性
state 属性
state:状态,有状态为复杂组件,无状态为简单组件
理解:
state是组件对象最重要的属性, 值是对象(可以包含多个key-value的组合)
组件被称为"状态机", 通过更新组件的state来更新对应的页面显示(重新渲染组件,每次调用render都在渲染组件)
注意:
-
组件(组件是一个对象)中render方法中的this为组件实例对象
-
组件自定义的方法中this为undefined,如何解决?
强制绑定this: 通过函数对象的bind() 箭头函数(必须写成赋值语句+箭头函数)
-
状态数据,不能直接修改或更新
例:定义一个展示天气信息的组件
- 默认展示天气炎热或凉爽
- 点击文字切换天气
<script type="text/babel"> // 1. 创建组件 class Weather extends React.Component { constructor(props) { super(props) // 初始化状态 this.state = {isHot:false} // that = this } render () { // 读取状态: // 或者直接const {isHot} = this.state , 后面就可以直接使用{isHot ? '炎热' : '凉爽'} // !!!注意这个判断的写法 return <h1 onClick={this.demo}>今天天气很{this.state.isHot ? '炎热' : '凉爽'}</h1> } demo() { // demo放在哪里? -----Weather的原型对象上,供实例使用 // 通过Weather实例调用demo时,demo中的this就是Weather实例 console.log(this.state.isHot); //由于demo是作为onClick的回调,所以不是通过实例调用的,是直接调用 //类中的方法默认开启了局部的严格模式,所以demo中的this位undefined console.log(this) } } // 2. 渲染组件到页面 ReactDOM.render(<Weather />,document.getElementById('test')) //测试 const w = new Weather() w.demo() //第二个结果为weather </script>
效果如图所示:
props 属性
理解:
- 每个组件对象都会有props(properties的简写)属性
- 组件标签的所有属性都保存在props中
作用:进行参数传递
- 通过标签属性从组件外向组件内传递变化的数据
- 注意: 组件内部不要修改props数据
props的基本使用方式:
<script type="text/babel"> // 创建组件 class Person extends React.Component { render() { console.log(this); // const {name,age,sex} = this.props; //此方法以下可以省略this.props return ( <ul> <li>姓名:{this.props.name}</li> <li>性别:{this.props.sex}</li> <li>年龄:{this.props.age}</li> </ul> ) } } // 渲染组件到页面 ReactDOM.render(<Person name="Tom" age="18" sex="男"/>,document.getElementById('test')) </script>
refs 属性
理解:
组件内的标签可以定义ref属性来标识自己
语法:
- 字符串形式的ref(已经不再使用)
<input ref="input1"/>
- 回调形式的ref
<input ref={(c)=>{this.input1 = c}} //函数为回调函数,写在这里,React会帮助回调
回调函数分为内联回调函数和类绑定回调函数两种形式,用内联回调情况更多
<script type="text/babel"> // 创建组件 class Demo extends React.Component { state = {isHot:true} showInfo = ()=> { const {input} = this; alert(input1.value) } changeWeather = () => { // 获取原来的状态 const {isHot} = this.state; // 更新状态 this.setState({isHot:!isHot}) } render() { const {isHot} = this.state; return ( <div> <h2>今天天气很{isHot ? '炎热' : '凉爽'}</h2> {/*内联函数的形式:*/} <input ref={(currentNode) => {this.input1 = currentNode;console.log('@',currentNode);}} type="text"/> <br /><br /> <button onClick={this.showInfo}>点我提示左侧的数据</button> <button onClick={this.changeWeather}>点我切换天气</button> </div> ) } } // 渲染组件 ReactDOM.render(<Demo/>,document.getElementById('test')) </script>
- createRef创建ref容器(目前react最推荐的形式)
myRef = React.createRef() <input ref={this.myRef}/>
缺点:要创建很多个ref的容器,用几个就得创建几个
<script type="text/babel"> // 创建组件 class Demo extends React.Component { // React.createRef调用后可以返回一个容器,该容器可以存储被ref所表示的节点,该容器是“专人专用”的 myRef = React.createRef() // 展示左侧输入框的数据 showData = () => { const {input1} = this alert(this.myRef.current.value) } render() { return ( <div> <input ref={this.myRef} type="text" placeholder="点击按钮提示数据"/> <button onClick={this.showData}>点我提示左侧的数据</button> </div> ) } } // 渲染组件 ReactDOM.render(<Demo/>,document.getElementById('test')) </script>
使用总结:在条件允许的情况下,尽可能避免字符串类型的ref
React中的事件处理
- 通过onXxx属性指定事件处理函数(注意大小写)
- React使用的是自定义(合成)事件, 而不是使用的原生DOM事件(即在React中重新封装)——为了更好的兼容性
- React中的事件是通过事件委托方式处理的(委托给组件最外层的元素) ——为了高效
- 通过event.target得到发生事件的DOM元素对象——不要过度地使用ref
- 省略ref:当发生事件的ref就是操作的ref时可以省略
这篇关于React -- 组件的三大属性(state、props、refs)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Vue项目实战:新手入门指南
- 2024-11-16React Hooks之useEffect案例详解
- 2024-11-16useRef案例详解:React中的useRef使用教程
- 2024-11-16React Hooks之useState案例详解
- 2024-11-16Vue入门指南:从零开始搭建第一个Vue项目
- 2024-11-16Vue3学习:新手入门教程与实践指南
- 2024-11-16Vue3学习:从入门到初级实战教程
- 2024-11-16Vue学习:新手入门必备教程
- 2024-11-16Vue3入门:新手必读的简单教程
- 2024-11-16Vue3入门:新手必读的简单教程