RN小结

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小结)