美文网首页
ReactNative问题随笔-undefined is not

ReactNative问题随笔-undefined is not

作者: zackaryZhu | 来源:发表于2018-05-08 17:43 被阅读28次

undefined is not an object (evaluating’_react2.PropTypes.string’)

对所引用的组件原 。import React, {Component,PropTypes}from 'react'

改成:import React, {Component}from 'react' 和  import { PropTypes}from 'prop-types';

注释:从React15.5起,React.PropTypes被移入到单独的package中。react提供了一个package(prop-types)去检查props的类型。首先需要将prop-types引用到文件中。

相关文章

网友评论

      本文标题:ReactNative问题随笔-undefined is not

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