我在 Rails 应用程序 (5.2) 上添加 Reactjs,但我想使用 coffeescript 来编写它。我添加了 webpack 并安装了react和咖啡支持,两者似乎都有效,但是当我想同时使用两者时,我得到:
Module parse failed: Unexpected token (10:9)
File was processed with these loaders:
* ./node_modules/coffee-loader/index.js
You may need an additional loader to handle the result of these loaders.
|
| Foo = props(() => {
> return <div>Hello {props.name}!</div>;
| });
|
我还将 coffeescript 更新到了应该原生支持 jsx 的 2.0 版。我可能会错过什么?