欢迎学习交流!!!
持续更新中…
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的基本使用方式:
<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>
理解:
组件内的标签可以定义ref属性来标识自己
语法:
<input ref="input1"/>
<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>
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