最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Line 5: 'tags' is missing in props validation reactprop-types - Stack Overflow

programmeradmin8浏览0评论

ESlint is giving me this warning when I am piling my code. We are using the AirBNB config.

import React from 'react';
import { Link } from 'react-router-dom';

const ProfileInterestSkillButtons = ({
    tags, title, user, member,
}) => {

    return (
        <div>
           {title}
        </div>
    );
};

export default ProfileInterestSkillButtons;

ESlint is giving me this warning when I am piling my code. We are using the AirBNB config.

import React from 'react';
import { Link } from 'react-router-dom';

const ProfileInterestSkillButtons = ({
    tags, title, user, member,
}) => {

    return (
        <div>
           {title}
        </div>
    );
};

export default ProfileInterestSkillButtons;
Share Improve this question edited Jan 5, 2018 at 6:04 Anthony Delgado asked Jan 5, 2018 at 5:53 Anthony DelgadoAnthony Delgado 871 gold badge1 silver badge7 bronze badges 3
  • At least paste the code including the 'line 5' here? – Liren Yeo Commented Jan 5, 2018 at 5:57
  • thanks! just added a stripped down version of the react ponent – Anthony Delgado Commented Jan 5, 2018 at 6:06
  • So, you're not doing any validation and you wondering why you're getting a warning saying you're not doing validation? – Thomas Hennes Commented Jan 5, 2018 at 6:07
Add a ment  | 

2 Answers 2

Reset to default 15

Your ponent is using a prop named tags that it is receiving from its parent ponent.

ESLint is just warning you to define a type check for that prop in the ponent where you are using it. You can do that by either using PropTypes or by using flow.

Simple example using PropType would be:

... // other imports
import PropTypes from 'prop-types';

... // your ponent declaration

ProfileInterestSkillButtons.propTypes = {
  tags: PropTypes.array.isRequired,
  title: PropTypes.string.isRequired,
  ... // and more
};

export default ProfileInterestSkillButtons;

PropType: https://reactjs/docs/typechecking-with-proptypes.html

Flow: https://flow/en/docs/react/

Using Flow

Quick recipe to type-check props using flow.

// @flow
import React from 'react';
import type { Node } from 'react';
import { SafeAreaView, ScrollView, StatusBar, StyleSheet } from 'react-native';

const ScreenDefaultView = (props: { layout: Node, scrollableLayout?: boolean } ) => {
    const layout = props.layout;
    const scrollableLayout = props.scrollableLayout;
    return ( ...

Note: in order to add Optional Parameters or also called in Flow maybe type just add a ?.

// scrollableLayout? is optional note the ? 
props: { layout: Node, scrollableLayout?: boolean }

Flow Documentation

  • Predicate Functions
发布评论

评论列表(0)

  1. 暂无评论