ReactNative问题随笔-undefined is not an object

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 an object)