我的编程空间,编程开发者的网络收藏夹
学习永远不晚

React代码的使用方法教程

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

React代码的使用方法教程

本篇内容介绍了“React代码的使用方法教程”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

1. 仅对一个条件进行渲染

如果需要在条件为 true 时渲染某些内容,而在条件为 false 时不渲染任何内容,不要使 三元表达式,请改用 &&。

?‍♂️ 不推荐示例:

import React, { useState } from 'react'  export const ConditionalRenderingWhenTrueBad = () => {   const [showConditionalText, setShowConditionalText] = useState(false)    const handleClick = () =>     setShowConditionalText(showConditionalText => !showConditionalText)    return (     <div>       <button onClick={handleClick}>Toggle the text</button>       {}       {showConditionalText ? <p>条件为 True!</p> : null}      </div>   ) }

? 推荐示例:

import React, { useState } from 'react'  export const ConditionalRenderingWhenTrueGood = () => {   const [showConditionalText, setShowConditionalText] = useState(false)    const handleClick = () =>     setShowConditionalText(showConditionalText => !showConditionalText)    return (     <div>       <button onClick={handleClick}>Toggle the text</button>       {showConditionalText && <p>条件为 True!</p>}     </div>   ) }

2. 每一个条件都进行渲染

如果需要在条件为 true 时渲染某些内容,而在条件为 false 时渲染其他内容。使用三元表达式!

?&zwj;♂️ 不推荐的示例:

import React, { useState } from 'react'  export const ConditionalRenderingBad = () => {   const [showConditionOneText, setShowConditionOneText] = useState(false)    const handleClick = () =>     setShowConditionOneText(showConditionOneText => !showConditionOneText)    return (     <div>       <button onClick={handleClick}>Toggle the text</button>       {}       {showConditionOneText && <p>条件为 True!</p>}       {!showConditionOneText && <p>条件为 Flase!</p>}     </div>   ) }

? 推荐示例:

import React, { useState } from 'react'  export const ConditionalRenderingGood = () => {   const [showConditionOneText, setShowConditionOneText] = useState(false)    const handleClick = () =>     setShowConditionOneText(showConditionOneText => !showConditionOneText)    return (     <div>       <button onClick={handleClick}>Toggle the text</button>       {showConditionOneText ? (         <p>The condition must be true!</p>       ) : (         <p>The condition must be false!</p>       )}     </div>   ) }

3. Boolean props

Props 值为 true 的推荐省略不写。

?&zwj;♂️ 不推荐示例:

import React from 'react'  const HungryMessage = ({ isHungry }) => (   <span>{isHungry ? 'I am hungry' : 'I am full'}</span> )  export const BooleanPropBad = () => (   <div>     <span>       <b>This person is hungry: </b>     </span>     <HungryMessage isHungry={true} />     <br />     <span>       <b>This person is full: </b>     </span>     <HungryMessage isHungry={false} />   </div> )

? 推荐示例:

import React from 'react'  const HungryMessage = ({ isHungry }) => (   <span>{isHungry ? 'I am hungry' : 'I am full'}</span> )  export const BooleanPropGood = () => (   <div>     <span>       <b>This person is hungry: </b>     </span>     {}     <HungryMessage isHungry />     <br />     <span>       <b>This person is full: </b>     </span>     <HungryMessage isHungry={false} />   </div> )

4. String props

Props 值为 String, 使用双引号,不使用花括号或反引号。

?&zwj;♂️ 不推荐示例:

import React from 'react'  const Greeting = ({ personName }) => <p>Hi, {personName}!</p>  export const StringPropValuesBad = () => (   <div>     <Greeting personName={"John"} />     <Greeting personName={'Matt'} />     <Greeting personName={`Paul`} />   </div> )

? 推荐示例:

import React from 'react'  const Greeting = ({ personName }) => <p>Hi, {personName}!</p>  export const StringPropValuesGood = () => (   <div>     <Greeting personName="John" />     <Greeting personName="Matt" />     <Greeting personName="Paul" />   </div> )

5. Event handler functions

如果一个事件函数只接受一个参数,不需要传入匿名函数:onChange={e=>handleChange(e)},推荐这种写法:onChange={handleChange}  。

?&zwj;♂️ 不推荐示例:

import React, { useState } from 'react'  export const UnnecessaryAnonymousFunctionsBad = () => {   const [inputValue, setInputValue] = useState('')    const handleChange = e => {     setInputValue(e.target.value)   }    return (     <>       <label htmlFor="name">Name: </label>       {}       <input id="name" value={inputValue} onChange={e => handleChange(e)} />     </>   ) }

? 推荐示例:

import React, { useState } from 'react'  export const UnnecessaryAnonymousFunctionsGood = () => {   const [inputValue, setInputValue] = useState('')    const handleChange = e => {     setInputValue(e.target.value)   }    return (     <>       <label htmlFor="name">Name: </label>       <input id="name" value={inputValue} onChange={handleChange} />     </>   ) }

6. components as props

将组件作为参数传递给另一个组件时,如果该组件不接受任何参数,则无需将该传递的组件包装在函数中。

?&zwj;♂️ 不推荐示例:

import React from 'react'  const CircleIcon = () => (   <svg height="100" width="100">     <circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" />   </svg> )  const ComponentThatAcceptsAnIcon = ({ IconComponent }) => (   <div>     <p>Below is the icon component prop I was given:</p>     <IconComponent />   </div> )  export const UnnecessaryAnonymousFunctionComponentsBad = () => (   {}   <ComponentThatAcceptsAnIcon IconComponent={() => <CircleIcon />} /> )

? 推荐示例:

import React from 'react'  const CircleIcon = () => (   <svg height="100" width="100">     <circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" />   </svg> )  const ComponentThatAcceptsAnIcon = ({ IconComponent }) => (   <div>     <p>Below is the icon component prop I was given:</p>     <IconComponent />   </div> )  export const UnnecessaryAnonymousFunctionComponentsGood = () => (   <ComponentThatAcceptsAnIcon IconComponent={CircleIcon} /> )

7. undefined props

如果参数为 undefined 是允许的,那么不要提供 undefined 作为回退值。

?&zwj;♂️ 不推荐示例:

import React from 'react'  const ButtonOne = ({ handleClick }) => (   <button onClick={handleClick || undefined}>Click me</button> )  const ButtonTwo = ({ handleClick }) => {   const noop = () => {}    return <button onClick={handleClick || noop}>Click me</button> }  export const UndefinedPropsBad = () => (   <div>     <ButtonOne />     <ButtonOne handleClick={() => alert('Clicked!')} />     <ButtonTwo />     <ButtonTwo handleClick={() => alert('Clicked!')} />   </div> )

? 推荐示例:

import React from 'react'  const ButtonOne = ({ handleClick }) => (   <button onClick={handleClick}>Click me</button> )  export const UndefinedPropsGood = () => (   <div>     <ButtonOne />     <ButtonOne handleClick={() => alert('Clicked!')} />   </div> )

8. 设置 state 依赖先前的 state

如果新 state 依赖于先前 state,则始终将 state 设置为先前 state 的函数。可以批处理 React 状态更新。

?&zwj;♂️ 不推荐示例:

import React, { useState } from 'react'  export const PreviousStateBad = () => {   const [isDisabled, setIsDisabled] = useState(false)    const toggleButton = () => setIsDisabled(!isDisabled)    const toggleButton2Times = () => {     for (let i = 0; i < 2; i++) {       toggleButton()     }   }    return (     <div>       <button disabled={isDisabled}>         I'm {isDisabled ? 'disabled' : 'enabled'}       </button>       <button onClick={toggleButton}>Toggle button state</button>       <button onClick={toggleButton2Times}>Toggle button state 2 times</button>     </div>   ) }

? 推荐示例:

import React, { useState } from 'react'  export const PreviousStateGood = () => {   const [isDisabled, setIsDisabled] = useState(false)    {}   const toggleButton = () => setIsDisabled(isDisabled => !isDisabled)    const toggleButton2Times = () => {     for (let i = 0; i < 2; i++) {       toggleButton()     }   }    return (     <div>       <button disabled={isDisabled}>         I'm {isDisabled ? 'disabled' : 'enabled'}       </button>       <button onClick={toggleButton}>Toggle button state</button>       <button onClick={toggleButton2Times}>Toggle button state 2 times</button>     </div>   ) }

“React代码的使用方法教程”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

React代码的使用方法教程

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

阿里云代理使用方法教程

首先,我们需要注册阿里云的账户。在我使用阿里云的时候,我需要先登录阿里云官网,然后进行注册。注册的过程非常简单,只需要填写一些基本的信息,例如用户名、密码、邮箱等。注册完成后,就可以开始使用阿里云提供的服务了。接下来,我们需要在阿里云官网上下载和安装相应的软件。这些软件会提供详细的使用说明和操作指南,以帮助我们更好地了
阿里云代理使用方法教程
2023-10-28

React代码拆分的方法有哪些

本篇内容介绍了“React代码拆分的方法有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!动态加载(import)es6提供import(
2023-07-05

去30秒广告代码的方法教程

这篇文章主要讲解了“去30秒广告代码的方法教程”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“去30秒广告代码的方法教程”吧!第一种比较常用的(不过最近发现好像有点问题,不建议使用该方法):
2023-06-08

Python代码的使用方法

本篇内容介绍了“Python代码的使用方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1. 反转字符串以下代码使用Python切片操作来反
2023-06-16

React-Native Android 与 IOS App使用一份代码实现方法

React-Native Android 与 IOS 共用代码 React-Native 开发的App, 所有组件iOS & Android 共用, 共享一份代码 包括一些自定义的组件, 如NavigationBar, TabBar, S
2022-06-06

PyCharm教程:使用批量缩进提升代码可读性的方法

PyCharm教程:如何利用批量缩进提高代码可读性在编写代码的过程中,代码的可读性是非常重要的。良好的代码可读性不仅可以方便自己审查和修改代码,还可以便于他人理解和维护代码。在使用PyCharm这样的Python集成开发环境(IDE)时,内
PyCharm教程:使用批量缩进提升代码可读性的方法
2023-12-30

React中代码分割的方法是什么

这篇“React中代码分割的方法是什么”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“React中代码分割的方法是什么”文章吧
2023-06-29

React代码分割的实现方法介绍

虽然一直有做react相关的优化,按需加载、dll分离、服务端渲染,但是从来没有从路由代码分割这一块入手过,所以下面这篇文章主要给大家介绍了关于React中代码分割的方式,需要的朋友可以参考下
2022-12-03

使用字符代替圆角尖角的方法教程

本篇内容介绍了“使用字符代替圆角尖角的方法教程”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!一、字体与字符显示的关系这里左右方向的尖角,字体
2023-06-08

编写vbs/js基础代码方法教程

这篇文章主要讲解了“编写vbs/js基础代码方法教程”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“编写vbs/js基础代码方法教程”吧!1、我们的第一个vbs程序:还是那个老得掉牙的冬冬。
2023-06-08

React中使用Mobx的方法

Mobx是一个前端“状态管理框架”,状态管理就是将分布在各个组件、各个模块中的状态的变化,按照一定的规则,进行统一的管理,这篇文章主要介绍了React中如何使用Mobx,需要的朋友可以参考下
2023-02-03

在react中使用highlight.js将页面上的代码高亮方法是什么

今天就跟大家聊聊有关在react中使用highlight.js将页面上的代码高亮方法是什么,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。通过 highlight.js 库实现对文章正
2023-06-26

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录