• 一些eslint的报红及解决


    1、iterators/generators require regenerator-runtime, which is too heavyweight for this guide to allow them. Separately, loops should be avoided in favor of array iterations.eslintno-restricted-syntax

    原因是使用了for infor of循环,替换为forEach/map循环即可解决。

    2、React Hook useEffect has a missing dependency: 'queryList'. Either include it or remove the dependency array.eslintreact-hooks/exhaustive-deps

    原因是缺少依赖项,但有时我们并不需要写依赖项,加一句:// eslint-disable-next-line react-hooks/exhaustive-deps即可解决。

    3、Assignment to property of function parameter 'item'.eslintno-param-reassign

     

    原因是循环中不允许直接修改每一项,不能直接对其做增加、删除、修改操作。新建一个对象,在新的对象上做操作就好。如下图:

  • 相关阅读:
    HTML
    JavaScript-DOM
    Visual Studio Usage
    Char 05 使用提供程序
    Char 04 运行命令
    Char 03 使用帮助系统
    char 02 初识 Powershell
    Char 01 PowerShell
    Linux Nginx
    Linux SSLH
  • 原文地址:https://www.cnblogs.com/afafaa/p/14793050.html
Copyright © 2020-2023  润新知