美文网首页
ReactNative 天坑收集

ReactNative 天坑收集

作者: 彡彡 | 来源:发表于2017-03-15 09:55 被阅读5次
    • 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';
    
    • 待发现...

    相关文章

      网友评论

          本文标题:ReactNative 天坑收集

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