我在 React-Native 中使用 Alt 库(Flux 实现)。我真的很喜欢 'alt/utils/decorators' 和 'alt/utils/connectToStores' 但我不能使用这些@decorators,因为 RN/Babel 配置似乎不支持它。

我绝对不精通 Babel(或 RN),所以我需要帮助配置 RN/Babel 以与 @decorators 一起工作。

如何在 React-Native 中使用 Alt 库的 @decorators?

最佳答案

Babel 6 目前打算让 transform-decorators 支持即将对装饰器提案进行的更改,这将使其行为与现有的完全不同。

如果你需要 Babel 6 中的装饰器与 Babel 5 中的装饰器具有相同的语义,你最好的选择是使用 babel-plugin-transform-decorators-legacy

关于javascript - React-Native 中的 Alt @decorators,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34269528/

10-09 23:01