中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

React中Props類型校驗和默認值的示例分析

發布時間:2022-03-31 14:44:28 來源:億速云 閱讀:326 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“React中Props類型校驗和默認值的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“React中Props類型校驗和默認值的示例分析”這篇文章吧。

一、props規則校驗

安裝 prop-types 包

$ npm install prop-types

導入 propTypes 對象

import propTypes from 'prop-types';

組件名.propTypes = {} 設置組件 傳參規則

Comp.propTypes = {
	param: propTypes.array  // Comp組件 的 param 參數必須是 數組類型
}

示例:

// props 類型校驗規則
import React from 'react';
// 1. npm i prop-types
// 2. 導入 propTypes 對象
import PropTypes from "prop-types";
function Son({list}) {
    return (
        <div>
            {list.map(item => <p key={item}>{item}</p>)}
        </div>
    )
}
// 3. 組件名.propTypes = {} 給組件設置規則
Son.PropTypes={
    // 4. 各字段設置規則
    list: PropTypes.array // Son的list參數必須是 數組形式
}
class App extends React.Component {
    render() {
        return (
            <div>
                <Son list="我企鵝親子裝"/>
            </div>
        )
    }
}
export default App;

報錯提示如下:

React中Props類型校驗和默認值的示例分析

四種常見結構

  • 常用類型:arraynumberboolstringfuncobjectsymbol

  • React元素類型:element

  • 必填項:isRequired

  • 特定的結構對象:shape({})

核心代碼:

// 1.類型
optionalFun: PropTypes.fun;
// 2.必填項
requiredFun: PropTypes.fun.isRequired;
// 3. // 可以指定一個對象由特定的類型值組成
optionalObjectWithShape: PropTypes.shape({
    color: PropTypes.string,
    fontSize: PropTypes.number
}),

二、props默認值

1.函數式默認值

1.1 函數參數默認值(新版推薦)

示例:

import React from "react";
// 1. 函數參數默認值
function Son1({defaultTime = 10}) {
    return (
        <div>The timer is : {defaultTime}</div>
    )
}
class App extends React.Component {
    render() {
        return (
            <div>
                <Son1 />
            </div>
        )
    }
}
export default App;

React中Props類型校驗和默認值的示例分析

1.2 defaultProps 設置默認值
function Son2({defaultTime}) {
    return (
        <div>The second timer is: {defaultTime}</div>
    )
}
// 2. defaultProps 設置默認值
Son2.defaultProps = {
    defaultTime: 100
}
class App extends React.Component {
    render() {
        return (
            <div>
                <Son1 />
                <Son2 />
            </div>
        )
    }
}

React中Props類型校驗和默認值的示例分析

2.類式默認值

2.1 defaultProps
class Son3 extends React.Component {
    render() {
        return (
            <div>The defaultTimer is : {this.props.defaultTime}</div>
        )
    }
}
// defaultProps 設置默認值
Son3.defaultProps = {
    defaultTime: 3333
}
2.2 類靜態屬性聲明
class Son4 extends React.Component {
    static defaultProps ={
        defaultTime: 66666
    }
    render() {
        return (
            <div>The defaultTimer is : {this.props.defaultTime}</div>
        )
    }
}

完整示例

// props默認值
import { func } from "prop-types";
import React from "react";
// 1.1 函數參數默認值
function Son1({defaultTime = 10}) {
    return (
        <div>The timer is : {defaultTime}</div>
    )
}

function Son2({defaultTime}) {
    return (
        <div>The second timer is: {defaultTime}</div>
    )
}
// 1.2 defaultProps 設置默認值
Son2.defaultProps = {
    defaultTime: 100
}
class Son3 extends React.Component {
    render() {
        return (
            <div>The defaultTimer is : {this.props.defaultTime}</div>
        )
    }
}
// 2.1 函數 defaultProps 設置默認值
Son3.defaultProps = {
    defaultTime: 3333
}
// 2.2 靜態屬性聲明
class Son4 extends React.Component {
    static defaultProps ={
        defaultTime: 66666
    }
    render() {
        return (
            <div>The defaultTimer is : {this.props.defaultTime}</div>
        )
    }
}
class App extends React.Component {
    render() {
        return (
            <div>
                <Son1 />
                <Son2 />
                <Son3 />
                <Son4 />
            </div>
        )
    }
}
export default App;

如圖:

React中Props類型校驗和默認值的示例分析

以上是“React中Props類型校驗和默認值的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涞水县| 法库县| 荣昌县| 阿克陶县| 肥东县| 靖宇县| 和龙市| 阿拉尔市| 达州市| 海阳市| 鹿泉市| 南康市| 育儿| 西昌市| 南和县| 许昌县| 河西区| 微山县| 宜宾市| 武清区| 鸡泽县| 大石桥市| 兴国县| 武汉市| 永安市| 海宁市| 新安县| 威海市| 沁水县| 博湖县| 唐河县| 万全县| 萨嘎县| 枣庄市| 朔州市| 泾川县| 湘乡市| 舒兰市| 博罗县| 怀安县| 新余市|