使用 react_component() 在 haml 文件中添加 React 组件

Using react_component() to add react components in haml files

在使用 react-rails 库时,我们可以在 .erb 文件中使用 react_component() 函数来添加 React 组件。

我们如何在 .haml 文件中使用相同的函数?或者我们有其他方法在 haml 文件中添加反应组件吗?

如果在您的 RoR 项目中设置了 webpacker,那么您可以简单地使用 react-rails 中的 react_component 函数,就像我们将 ruby 代码添加到 haml 文件中一样。

例如:

%li
  = react_component("ReactComponent")

这应该可以正常工作。默认情况下,Webpacker 将尝试在 app/javascript/components 中定位 React 组件。