Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 HTML 重构为 React。HTML 使用购买的主题,该主题依赖于一些自定义 JS 文件,包括 jQuery。如何将自定义脚本链接到 React 中的组件?我是否将它们链接到公用文件夹中的 index.html 文件中?还是我需要在每个组件文件中链接它们?
您可以在 index.html 中链接它们,也可以在 JavaScript 中导入它们。我倾向于在我的根 JavaScript 文件中导入,以便将导入的文件与我的 JavaScript 的其余部分捆绑在一起(如果使用像 webpack 这样的捆绑器)。例如,要包含实现所需的 JavaScript,我只需 require("./js/bin/materialize"); 在 app.jsx 文件中添加即可。
require("./js/bin/materialize");