今天做项目遇到了一个坑
import React, { Component,PropTypes} from ‘react‘; console.log(PropTypes); //undefined
用来限制prop的propTypes竟然是undefined,后查了资料才知道这种写法已经被废除,现在的写法如下:
import React, { Component } from ‘react‘;
import PropTypes from ‘prop-types‘;
标签:pos 问题 define react type 一个 undefined imp body
今天做项目遇到了一个坑
import React, { Component,PropTypes} from ‘react‘; console.log(PropTypes); //undefined
用来限制prop的propTypes竟然是undefined,后查了资料才知道这种写法已经被废除,现在的写法如下:
import React, { Component } from ‘react‘;
import PropTypes from ‘prop-types‘;
标签:pos 问题 define react type 一个 undefined imp body
原文地址:https://www.cnblogs.com/chenzhiyu/p/8126034.html