RN小结

作者: 金抽抽o | 来源:发表于2017-08-09 16:44 被阅读0次

    rn怎么支持decorators(@observer)

    • npm i -S babel-plugin-transform-decorators-legacy
    • .babelrc文件里新增decorators-legacy 支持。
      .babelrc 在根目录下,与package.json同一级的隐藏文件。
      like so :
      {
      "presets": ["es2015", "react", "stage-1"],
      "plugins": ["transform-decorators-legacy"]
      }

    cannot read property 'xxx' of undefined

    这种错误,先看自己传值方法的时候,有没有调用bind(this)

    相关文章

      网友评论

          本文标题:RN小结

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