返回顶部
首页 > 资讯 > 前端开发 > html >React代码的使用方法教程
  • 883
分享到

React代码的使用方法教程

2024-04-02 19:04:59 883人浏览 独家记忆
摘要

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

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

--结束END--

本文标题: React代码的使用方法教程

本文链接: https://lsjlt.com/news/83430.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • React代码的使用方法教程
    本篇内容介绍了“React代码的使用方法教程”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1. 仅对一个条...
    99+
    2024-04-02
  • 10个React安全的使用方法教程
    本篇内容主要讲解“10个React安全的使用方法教程”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“10个React安全的使用方法教程”吧! 数据绑定(...
    99+
    2024-04-02
  • 很实用的CSS的代码片段方法教程
    本篇内容介绍了“很实用的CSS的代码片段方法教程”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!CSS重置这...
    99+
    2024-04-02
  • 阿里云代理使用方法教程
    首先,我们需要注册阿里云的账户。在我使用阿里云的时候,我需要先登录阿里云官网,然后进行注册。注册的过程非常简单,只需要填写一些基本的信息,例如用户名、密码、邮箱等。注册完成后,就可以开始使用阿里云提供的服务了。 接下来,我们需要在阿里云官...
    99+
    2023-10-28
    阿里 使用方法 教程
  • React中props使用教程
    目录1. children 属性1.1 React.cloneElement方法1.2 React.Children.map方法2. 类型限制(prop-types)3. 默认值(d...
    99+
    2024-04-02
  • 去30秒广告代码的方法教程
    这篇文章主要讲解了“去30秒广告代码的方法教程”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“去30秒广告代码的方法教程”吧!第一种比较常用的(不过最近发现好像有点问题,不建议使用该方法): ...
    99+
    2023-06-08
  • 在react中使用highlight.js将页面上的代码高亮的方法
    通过 highlight.js 库实现对文章正文 HTML 中的代码元素自动添加语法高亮,highlight.js官方文档 下载highlight.js npm i highligh...
    99+
    2024-04-02
  • React代码拆分的方法有哪些
    本篇内容介绍了“React代码拆分的方法有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!动态加载(import)es6提供import(...
    99+
    2023-07-05
  • Navicat使用教程:使用Navicat代码段
    下载Navicat Premium最新版本Navicat Premium是一个可连接多种数据库的管理工具,它可以让你以单一程序同时连接到MySQL、Oracle及PostgreSQL数据库,让管理不同类型的...
    99+
    2024-04-02
  • Python代码的使用方法
    本篇内容介绍了“Python代码的使用方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1. 反转字符串以下代码使用Python切片操作来反...
    99+
    2023-06-16
  • React使用emotion写css代码
    目录简介: emotion的安装:新增普通css组件: 给已存在组件加样式: 提取公共的css组件 写emotion行内样式 简介: emotion是一个JavaScript库,使...
    99+
    2024-04-02
  • React-Native Android 与 IOS App使用一份代码实现方法
    React-Native  Android 与 IOS 共用代码 React-Native 开发的App, 所有组件iOS & Android 共用, 共享一...
    99+
    2022-06-06
    native 方法 IOS app React Android
  • PyCharm教程:使用批量缩进提升代码可读性的方法
    PyCharm教程:如何利用批量缩进提高代码可读性在编写代码的过程中,代码的可读性是非常重要的。良好的代码可读性不仅可以方便自己审查和修改代码,还可以便于他人理解和维护代码。在使用PyCharm这样的Python集成开发环境(IDE)时,内...
    99+
    2023-12-30
    Pycharm 可读性 批量缩进
  • React中代码分割的方法是什么
    这篇“React中代码分割的方法是什么”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“React中代码分割的方法是什么”文章吧...
    99+
    2023-06-29
  • React代码分割的实现方法介绍
    目录代码分割React.lazy&Suspense异常捕获边界(Error boundaries)基于路由的代码分割命名导出(Named Exports)代码分割 打包是个很...
    99+
    2022-12-03
    React代码分割 React代码分割实现方式
  • OpenPDF使用教程及样例代码
    使用OpenPDF生成pdf文档。 Java生成PDF文档的三方库 iText:仅限于仅限于个人用途或者开源项目,商业使用需要收费 OpenPDF:基于iText的一个分支发展而来,商业友好 A...
    99+
    2023-09-10
    java
  • 教你在VS2022 MFC程序中调用CUDA代码的方法
    目录在VS2022 MFC程序中调用CUDA函数Pre: 安装好CUDA后VS中该有的效果将CUDA函数集成到MFC项目中1. 为项目添加CUDA配置2. 把cuda代码添加到项目中...
    99+
    2024-04-02
  • 编写vbs/js基础代码方法教程
    这篇文章主要讲解了“编写vbs/js基础代码方法教程”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“编写vbs/js基础代码方法教程”吧!我们的第一个vbs程序:还是那个老得掉牙的冬冬。 **...
    99+
    2023-06-08
  • 使用字符代替圆角尖角的方法教程
    本篇内容介绍了“使用字符代替圆角尖角的方法教程”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!一、字体与字符显示的关系这里左右方向的尖角,字体...
    99+
    2023-06-08
  • 使用java代码代替xml实现SSM教程
    目录1.在IDEA中创建一个普通的maven项目2.添加Spring配置3.添加SpringMVC配置5.测试5.1创建HelloController类5.2创建HelloContr...
    99+
    2024-04-02
软考高级职称资格查询
推荐阅读
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作