无状态组件

Posted lianran

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无状态组件相关的知识,希望对你有一定的参考价值。

// 无状态组件
当组件只有一个render的时候,可以只返回一个函数,不需要再定义class类了,
无状态组件可以提升代码的性能,因为没有生成任何的生命周期函数
import React from ‘react‘
import { Input, Button,List } from ‘antd‘;

无状态组件直接接受props参数,调用的时候:props.inputValue

而容器组件通过constructor(props)函数,调用的时候:this.props.inputValue

class Header extends Component{
// constructor(props){
// super(props);
// this.state={
// focused:false
// };
// this.handleInputFocus=this.handleInputFocus.bind(this);
// this.handleInputBlur=this.handleInputBlur.bind(this);
// }
render(){
let {focused,handleInputFocus,handleInputBlur}=this.props;
}

  

 

const TodoList2UI=(props)=>{
return (
    <div style={{marginTop: ‘10px‘, marginLeft: ‘10px‘}}>
        <Input value={props.inputValue}
               placeholder="Basic usage"
               onChange={props.handleInputChange}
               style={{width: ‘300px‘, marginRight: ‘10px‘}}/>
        <Button type="primary"
                onClick={props.handleBtnClick}>Primary</Button>
        <List
            style={{marginTop: ‘10px‘, width: ‘300px‘}}
            size="small"
            bordered
            dataSource={props.list}
            renderItem={(item,index) =>(
                    <List.Item onClick={(event)=>{
                        // console.log("event:",event.target);
                        props.handleDelItem(index)}
                    }>{item}</List.Item>)
            }/>
    </div>
)
}
    export default TodoList2UI

  


---------------------
作者:pansuyong
来源:CSDN
原文:https://blog.csdn.net/pansuyong/article/details/82927598
版权声明:本文为博主原创文章,转载请附上博文链接!










以上是关于无状态组件的主要内容,如果未能解决你的问题,请参考以下文章

无状态组件 React 路由器

Android导航组件:如何保存片段状态

37行代码构建无状态组件通信工具-让恼人的Vuex和Redux滚蛋吧!

如何保存底部导航片段的状态 - 具有单个导航图的 Android 导航组件

当返回到“导航架构组件”中的同一选项卡时,嵌套片段的状态会丢失

在无状态组件中类型检查 styled-components 道具