ReactNative 天坑收集

  • expected a component class,got[object object]
    自定义组件首字母需要大写

  • Can't find variable: XXX(控件)
    没有import 控件

  • Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got:......


    ReactNative 天坑收集_第1张图片
    Simulator Screen Shot 2017年6月1日 上午10.53.41.png

    export 组件的时候:如果使用export default时,对应的import 语句不需要使用大括号;不适用export default时,对应的import 语句要使用大括号

import {
    Appstart
}  from './resource/Appstart';
  • 待发现...

你可能感兴趣的:(ReactNative 天坑收集)