热门搜索 :
考研考公
您的当前位置:首页正文

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:......


    Simulator Screen Shot 2017年6月1日 上午10.53.41.png

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

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