美文网首页
[20190114] react 数据类型验证异常

[20190114] react 数据类型验证异常

作者: 德拉T | 来源:发表于2019-01-14 02:06 被阅读0次

TypeError: Cannot read property 'string' of undefined

据查从15.5开始 React.PropTypes助手函数已被弃用,改用prop-types 库

import PropTypes from 'prop-types';
 
class Greeting extends React.Component {
  render() {
    return (
      <h1>Hello, {this.props.name}</h1>
    );
  }
}
 
Greeting.propTypes = {
  name: PropTypes.string
};

参见 https://blog.csdn.net/Super_LD/article/details/80717232

相关文章

网友评论

      本文标题:[20190114] react 数据类型验证异常

      本文链接:https://www.haomeiwen.com/subject/mxbrdqtx.html