繁体   English   中英

道具验证中缺少 React eslint 错误

[英]React eslint error missing in props validation

我有下一个代码,eslint throw:

反应/道具类型 onClickOut; 道具验证中缺少

反应/道具类型的孩子; 道具验证中缺少

propTypes已定义,但 eslint 无法识别。

import React, { Component, PropTypes } from 'react';

class IxClickOut extends Component {
  static propTypes = {
    children: PropTypes.any,
    onClickOut: PropTypes.func,
  };

 componentDidMount() {
    document.getElementById('app')
      .addEventListener('click', this.handleClick);
  }

  componentWillUnmount() {
    document.getElementById('app')
      .removeEventListener('click', this.handleClick);
  }

  handleClick = ({ target }: { target: EventTarget }) => {
    if (!this.containerRef.contains(target)) {
      this.props.onClickOut();
    }
  };

  containerRef: HTMLElement;

  render() {
    const { children, ...rest } = this.props;
    const filteredProps = _.omit(rest, 'onClickOut');

    return (
      <div
        {...filteredProps}
        ref={container => {
          this.containerRef = container;
        }}
      >
        {children}
      </div>
    );
  }
}

export default IxClickOut;

package.json

{
  "name": "verinmueblesmeteor",
  "private": true,
  "scripts": {
    "start": "meteor run",
    "ios": "NODE_ENV=developement meteor run ios"
  },
  "dependencies": {
    "fine-uploader": "^5.10.1",
    "foundation-sites": "^6.2.3",
    "install": "^0.8.1",
    "ix-gm-polygon": "^1.0.11",
    "ix-type-building": "^1.4.4",
    "ix-type-offer": "^1.0.10",
    "ix-utils": "^1.3.7",
    "keymirror": "^0.1.1",
    "meteor-node-stubs": "^0.2.3",
    "moment": "^2.13.0",
    "npm": "^3.10.3",
    "rc-slider": "^3.7.3",
    "react": "^15.1.0",
    "react-addons-pure-render-mixin": "^15.1.0",
    "react-dom": "^15.1.0",
    "react-fileupload": "^2.2.0",
    "react-list": "^0.7.18",
    "react-modal": "^1.4.0",
    "react-redux": "^4.4.5",
    "react-router": "^2.6.0",
    "react-styleable": "^2.2.4",
    "react-textarea-autosize": "^4.0.4",
    "redux": "^3.5.2",
    "redux-form": "^5.3.1",
    "redux-thunk": "^2.1.0",
    "rxjs": "^5.0.0-beta.9",
    "rxjs-es": "^5.0.0-beta.9",
    "socket.io": "^1.4.8"
  },
  "devDependencies": {
    "autoprefixer": "^6.3.6",
    "babel-eslint": "^6.0.4",
    "babel-plugin-transform-decorators-legacy": "^1.3.4",
    "babel-preset-es2015": "^6.9.0",
    "babel-preset-react": "^6.5.0",
    "babel-preset-stage-0": "^6.5.0",
    "core-js": "^2.0.0",
    "cssnano": "^3.7.1",
    "eslint": "^2.12.0",
    "eslint-config-airbnb": "^9.0.1",
    "eslint-import-resolver-meteor": "^0.2.3",
    "eslint-plugin-import": "^1.8.1",
    "eslint-plugin-jsx-a11y": "^1.2.2",
    "eslint-plugin-react": "^5.1.1",
    "node-sass": "^3.8.0",
    "postcss-cssnext": "^2.6.0",
    "sasslets-animate": "0.0.4"
  },
  "cssModules": {
    "ignorePaths": [
      "node_modules"
    ],
    "jsClassNamingConvention": {
      "camelCase": true
    },
    "extensions": [
      "scss",
      "sass"
    ],
    "postcssPlugins": {
      "postcss-modules-values": {},
      "postcss-modules-local-by-default": {},
      "postcss-modules-extract-imports": {},
      "postcss-modules-scope": {},
      "autoprefixer": {}
    }
  }
}

.babelrc

{
  "presets": [
    "es2015",
    "react",
    "stage-0"
  ],
  "whitelist": [
      "es7.decorators",
      "es7.classProperties",
      "es7.exportExtensions",
      "es7.comprehensions",
      "es6.modules"
  ],
  "plugins": ["transform-decorators-legacy"]
}

.eslintrc

{
  "parser": "babel-eslint",
  "extends": "airbnb",
  "rules": {
    "no-underscore-dangle": ["error", { "allow": [_id, b_codes_id] }],
  },
  "settings": {
    "import/resolver": "meteor"
  },
  "globals": {
    "_": true,
    "CSSModule": true,
    "Streamy": true,
    "ReactClass": true,
    "SyntheticKeyboardEvent": true,
  }
}

如果您希望在类声明中使用它,则需要将propTypes定义为静态 getter:

static get propTypes() { 
    return { 
        children: PropTypes.any, 
        onClickOut: PropTypes.func 
    }; 
}

如果要将其定义为对象,则需要在类外定义它,如下所示:

IxClickOut.propTypes = {
    children: PropTypes.any,
    onClickOut: PropTypes.func,
};

此外,最好从prop-types导入 prop 类型,而不是react ,否则您会在控制台中看到警告(作为React 16 的准备):

import PropTypes from 'prop-types';

我知道这个答案很荒谬,但请考虑禁用此规则,直到错误得到解决或您升级了工具:

/* eslint-disable react/prop-types */ // TODO: upgrade to latest eslint tooling

或者在你的 eslintrc 中禁用项目范围:

"rules": {
  "react/prop-types": "off"
}

似乎问题出在eslint-plugin-react

如果您通过在类中的任何地方解构来注释命名对象,则它无法正确检测propTypes中提到的道具。

过去有类似的问题

我在过去几天遇到了这个问题。 就像 Omri Aharon 在上面的回答中所说的那样,为您的道具类型添加类似于以下内容的定义很重要:

SomeClass.propTypes = {
    someProp: PropTypes.number,
    onTap: PropTypes.func,
};

不要忘记在类之外添加 prop 定义。 我会把它放在我班级的正下方/上方。 如果您不确定您的 PropType 的变量类型或后缀是什么(例如:PropTypes.number),请参阅此npm 参考 要使用 PropTypes,您必须导入包:

import PropTypes from 'prop-types';

如果您收到 linting 错误: someProp is not required, but has no corresponding defaultProps declaration您所要做的就是将.isRequired添加到 prop 定义的末尾,如下所示:

SomeClass.propTypes = {
    someProp: PropTypes.number.isRequired,
    onTap: PropTypes.func.isRequired,
};

或者像这样添加默认的 prop 值:

SomeClass.defaultProps = {
    someProp: 1
};

如果你和我一样,没有经验或不熟悉 reactjs,你也可能会得到这个错误: Must use destructuring props assignment 要修复此错误,请在使用 props 之前定义它们。 例如:

const { someProp } = this.props;

对我来说,将eslint-plugin-react升级到最新版本 7.21.5 解决了这个问题

问题出在 handleClick 中的流注释中,我删除了它并且工作正常,谢谢@alik

问题:道具验证中缺少“id1”,eslintreact/prop-types

<div id={props.id1} >
    ...
</div>

以下解决方案在功能组件中起作用:

let { id1 } = props;

<div id={id1} >
    ...
</div>

希望有帮助。

PropTypes 检查是个好东西,不建议通过设置忽略

您可以使用 vscode React PropTypes Generate 扩展自动生成 propTypes:

  1. 选择您的组件名称
  2. 按命令 + 。 (Windows 是 Ctrl + 。)显示代码操作并选择 PropTypesGenerate,或在 macOS 中按 shift + command + alt + P(Windows 是 shift + ctrl + alt + P)
  3. 输入 propType 替换默认类型

我发现 eslint 在我自己工作的项目中过于严格,但是对于这个错误,我通过定义我的接口然后实现它来修复它:

interface myInterface: {
  test: string
}

const MyComponent: React.FC<myInterface> = (props: myInterface) => {

从类似问题中复制我的答案: https : //stackoverflow.com/a/69199304/4290193

eslint-plugin-react@^7.25.0似乎已经解决了那些使用React.FC<IProps>react/prop-types验证规则的问题。

所以代替

const Example: React.FC<IProps> = (props: IProps) => ...

更新后现在可以正常工作而不会发出警告

const Example: React.FC<IProps> = (props) => ...

函数式反应组件。 定义为对象。 我收到此错误是因为我从名称略有不同的不同对象复制并粘贴了该对象,而忘记更改 proptypes 对象的名称。

FooterIcons.propTypes = {} -> FooterIcon.propTypes

安装 prop-types 包 - npm i prop-types --save导入它-

import PropTypes from 'prop-types';

然后指定道具,我是这样实现的——

export default function Text({ children }) {
    Text.propTypes = {
        children: PropTypes.node.isRequired,
        };
  return (
    <VStyle className="para">
      <p>{children}</p>
    </VStyle> 
  );
}

还要在您的 eslintrc.json 或 .js 文件中添加它

"rules": {
    "react/prop-types": "off"
  }

代替禁用prop-types规则,我们可以引入 children 属性作为组件 props 的一部分,例如:

import React, { Component } from 'react';

export default class ErrorBoundary extends Component<{ children: React.ReactNode }> {
  constructor(props: { children: React.ReactNode }) {
    super(props);

    this.state = { error: null, errorInfo: null };
  }

  componentDidCatch(error: Readonly<unknown>, errorInfo: Readonly<unknown>): void {
    this.setState({ error, errorInfo });
  }

  render(): React.ReactElement | React.ReactNode {
    const { children } = this.props;
    const { error, errorInfo } = this.state as Readonly<Record<string, { componentStack: string }>>;

    if (errorInfo)
      return (
        <details>
          <h3>Oops, error detected.</h3>
          <p>{error?.toString()}</p>
          <p>{errorInfo?.componentStack}</p>
        </details>
      );
    return children;
  }
}

上面一个是eslint错误消失的典型例子~~

不用担心开心~~

在新版本的 React 和 Next.js 上,您可以简单地导入 PropTypes,如下所示,

并在文件底部添加 defaultProps 和 propTypes,例如,

Post.defaultProps = {
  posts: "",
};

Post.propTypes = {
  posts: PropTypes.string,
};

export default Post;

另一种方法是:


文件:App.js

    ...
        <Component1 key1="abc" />
    ...

文件:Component1.js

1 个错误

    function Component1 ({ key1 }) {
        console.log('key1', key1);
    }

2错误

    function Component1 (props) {
        let{ key1 } = props;
        console.log('key1', key1);
    }

3作品

注意: prop而不是props

    function Component1 (prop) {
        let{ key1 } = prop;
        console.log('key1', key1);
    }

看起来,linter 只检查正确的单词props ,而不是prop或 like。
如果您刚刚开始或快速原型设计,这是一个解决方案。
对于后期或大型项目,定义 proptypes 可能会更好。


暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM