react 组件、父子组件传参、参数类型限定、默认值设置

一、react 组件的创建和使用

  1. 创建有状态组件,创建 src\pages\parent\index.js 组件文件
    有状态组件:在无状态组件基础上拥有 this和生命周期
import React, { Component } from 'react';

class Parent extends Component {
    constructor(props) {
        super(props);
        this.state = {};
    }
    render() {
        return (
            <>
                <div>Parent</div>
                <div>组件</div>
            </>
        );
    }
}
export default Parent;
  1. 创建无状态组件,创建 src\pages\test\index.js 组件文件
    无状态组件:无 this 和无生命周期,单纯的渲染组件,相比有状态组件更高效
    数据来源:只能接受父组件传递的 props 参数 和 redux 数据
function Test(props) {
    return (
        <>
          <div>{props.msg}</div>
        </>
    );
}

export default Test;

二、react 父子组件传值

1. react 父组件向子组件传值

  1. 在父组件 src\pages\parent\index.js 中,通过在组件标签上绑定属性来传参
import React, { Component } from 'react';
import Child1 from './components/child1';

class Parent extends Component {
    constructor(props) {
        super(props);
        this.state = {
            title: {
                t1: '云想衣裳',
                t2: '花想容',
            }
        };
    }

    render() {
        return (
            <>
                <div>我是Parent组件</div>
                <Child1 title={this.state.title} />
                <div> {this} </div>
            </div>
        );
    }
}

export default Parent;
  1. 创建子组件 src\pages\parent\components\child1.js,在子组件通过 props 属性 来接收参数,并对参数类型进行限制和设置默认值
import React, { Component } from 'react';
import PropTypes from 'prop-types';

class Child1 extends Component {
    constructor(props) {
        super(props);
        this.state = {};
    }

    render() {
        return (
            <>
                <div>我是child1</div>
                <h1>
                    {this.props.title.t1}
                    {this.props.title.t2}
                </h1>
            </>
        );
    }
}

// 对父组件传递过来的参数进行数据类型限制
Child1.propTypes = {
    title: PropTypes.object,
};

// 对父组件传递过来的参数进行默认参数设置
Child1.defaultProps = {
    title: {
        t1: 'default',
        t2: 'props',
    },
};
export default Child1;

2. react 子组件向父组件传值

  1. 在子组件 src\pages\parent\components\child1.js 中
    子组件通过父组件传递过来的属性方法向父组件传递参数
import React, { Component } from 'react';
import PropTypes from 'prop-types';

class Child1 extends Component {
    constructor(props) {
        super(props);
        this.state = {
            pTitle: '春风拂槛露华浓',
        };
        this.handleClick = this.handleClick.bind(this);
    }

    render() {
        return (
            <>
                <div>我是child1</div>
                <h1 onClick={this.handleClick}>
                    {this.props.title.t1}
                    {this.props.title.t2}
                </h1>
            </>
        );
    }
    handleClick() {
        // 子组件向父组件传参
        this.props.changeTitle(this.state.pTitle);
    }
}

Child1.propTypes = {
    title: PropTypes.object,
};

Child1.defaultProps = {
    title: {
        t1: 'default',
        t2: 'props',
    },
};
export default Child1;
  1. 在父组件 Parent.js 中
    父组件通过在组件标签上绑定定义的属性方法来接收子组件传递过来的参数
import React, { Component } from 'react';
import Child1 from './components/child1';

class Parent extends Component {
    constructor(props) {
        super(props);
        this.state = {
            title: {
                t1: '云想衣裳',
                t2: '花想容',
            },
            pTitle: '',
        };
        this.changeTitle = this.changeTitle.bind(this); // 指定this指向
    }

    render() {
        return (
            <>
                <div>我是Parent组件</div>
                <Child1 title={this.state.title} changeTitle={this.changeTitle} />
                <h1>{this.state.pTitle}</h1>
            </>
        );
    }
    // 接受子组件传递过来的参数
    changeTitle(pTitle) {
        this.setState(() => {
            return {
                pTitle,
            };
        });
    }
}

export default Parent;

三、propTypes 参考资料

import React from 'react';
import PropTypes from 'prop-types';

class MyComponent extends React.Component {
    render() {
        // ... do things with the props
    }
}

MyComponent.propTypes = {
    // You can declare that a prop is a specific JS primitive. By default, these
    // are all optional.
    optionalArray: PropTypes.array,
    optionalBigInt: PropTypes.bigint,
    optionalBool: PropTypes.bool,
    optionalFunc: PropTypes.func,
    optionalNumber: PropTypes.number,
    optionalObject: PropTypes.object,
    optionalString: PropTypes.string,
    optionalSymbol: PropTypes.symbol,

    // Anything that can be rendered: numbers, strings, elements or an array
    // (or fragment) containing these types.
    // see https://reactjs.org/docs/rendering-elements.html for more info
    optionalNode: PropTypes.node,

    // A React element (ie. <MyComponent />).
    optionalElement: PropTypes.element,

    // A React element type (eg. MyComponent).
    // a function, string, or "element-like" object (eg. React.Fragment, Suspense, etc.)
    // see https://github.com/facebook/react/blob/HEAD/packages/shared/isValidElementType.js
    optionalElementType: PropTypes.elementType,

    // You can also declare that a prop is an instance of a class. This uses
    // JS's instanceof operator.
    optionalMessage: PropTypes.instanceOf(Message),

    // You can ensure that your prop is limited to specific values by treating
    // it as an enum.
    optionalEnum: PropTypes.oneOf(['News', 'Photos']),

    // An object that could be one of many types
    optionalUnion: PropTypes.oneOfType([PropTypes.string, PropTypes.number, PropTypes.instanceOf(Message)]),

    // An array of a certain type
    optionalArrayOf: PropTypes.arrayOf(PropTypes.number),

    // An object with property values of a certain type
    optionalObjectOf: PropTypes.objectOf(PropTypes.number),

    // You can chain any of the above with `isRequired` to make sure a warning
    // is shown if the prop isn't provided.

    // An object taking on a particular shape
    optionalObjectWithShape: PropTypes.shape({
        optionalProperty: PropTypes.string,
        requiredProperty: PropTypes.number.isRequired,
    }),

    // An object with warnings on extra properties
    optionalObjectWithStrictShape: PropTypes.exact({
        optionalProperty: PropTypes.string,
        requiredProperty: PropTypes.number.isRequired,
    }),

    requiredFunc: PropTypes.func.isRequired,

    // A value of any data type
    requiredAny: PropTypes.any.isRequired,

    // You can also specify a custom validator. It should return an Error
    // object if the validation fails. Don't `console.warn` or throw, as this
    // won't work inside `oneOfType`.
    customProp: function (props, propName, componentName) {
        if (!/matchme/.test(props[propName])) {
            return new Error('Invalid prop `' + propName + '` supplied to' + ' `' + componentName + '`. Validation failed.');
        }
    },

    // You can also supply a custom validator to `arrayOf` and `objectOf`.
    // It should return an Error object if the validation fails. The validator
    // will be called for each key in the array or object. The first two
    // arguments of the validator are the array or object itself, and the
    // current item's key.
    customArrayProp: PropTypes.arrayOf(function (propValue, key, componentName, location, propFullName) {
        if (!/matchme/.test(propValue[key])) {
            return new Error('Invalid prop `' + propFullName + '` supplied to' + ' `' + componentName + '`. Validation failed.');
        }
    }),
};
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容