React中的fragment和StrictMode

Posted 小小白学计算机

tags:

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

一、fragment

在之前的开发中,我们总是在一个组件中返回内容时包裹一个div元素:

我们又希望可以不渲染这样一个div应该如何操作呢?

  • 使用Fragment
  • Fragment 允许你将子列表分组,而无需向 DOM 添加额外节点;

React还提供了Fragment的短语法:

  • 它看起来像空标签 <> </>;

  • 但是,如果我们需要在Fragment中添加key,那么就不能使用短语法


二、StrictMode

StrictMode 是一个用来突出显示应用程序中潜在问题的工具。

  • 与 Fragment 一样,StrictMode 不会渲染任何可见的 UI;
  • 它为其后代元素触发额外的检查和警告;
  • 严格模式检查仅在开发模式下运行;它们不会影响生产构建;

可以为应用程序的任何部分启用严格模式:

  • 不会对 Header 和 Footer 组件运行严格模式检查;
  • 但是,ComponentOne 和 ComponentTwo 以及它们的所有后代元素都将进行检查;

三、严格模式检查的是什么?

但是检测,到底检测什么呢?

  1. 识别不安全的生命周期:



  1. 使用过时的ref API

  2. 使用废弃的findDOMNode方法

  • 在之前的React API中,可以通过findDOMNode来获取DOM,不过已经不推荐使用了
  1. 检查意外的副作用
  • 这个组件的constructor会被调用两次;
  • 这是严格模式下故意进行的操作,让你来查看在这里写的一些逻辑代码被调用多次时,是否会产生一些副作用;
  • 在生产环境中,是不会被调用两次的;
import React, PureComponent, StrictMode from 'react';
class Home extends PureComponent 
    /*UNSAFE_componentWillMount() 
        console.log('home componentWillMount')
    */
    constructor(props) 
        super(props);
        console.log('home constructor')
    
    render() 
        return (
            <div>
                Home
            </div>
        );
    

class Profile extends PureComponent 
    /*UNSAFE_componentWillMount() 
        console.log('profile componentWillMount')
    */
    constructor(props) 
        super(props);
        console.log('profile constructor')
    
    render() 
        return (
            <div>
                Profile
            </div>
        );
    


class App extends PureComponent 
    render() 
        return (
            <div>
                <StrictMode>
                    <Home/>
                </StrictMode>
                <Profile/>
            </div>
        );
    


export default App;

  1. 检测过时的context API
  • 早期的Context是通过static属性声明Context对象属性,通过getChildContext返回Context对象等方式来使用Context的;
  • 目前这种方式已经不推荐使用,大家可以自行学习了解一下它的用法;

以上是关于React中的fragment和StrictMode的主要内容,如果未能解决你的问题,请参考以下文章

React开发(214):React中的Fragments

React开发(215):React中的Fragments的动机

template标签就相当于React中的fragment

react之Fragment

React 片段中的文本

[react] 你有用过React.Fragment吗?说说它有什么用途?