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.
我有一些静态 JS 文件,我想包含在 rails 控制器视图中,不幸的是,只需将它们放在适当的视图文件夹中,我就会得到 404 响应。有没有办法做到这一点?
如果你想在你的视图文件中使用 javascript
<script type="text/javascript"> //code goes here </script>
或者
如果要加载 JS 文件,则需要将它们放在 app/assets/javascripts 目录中。
如果你有一个文件 your-js-file.js 然后把它放在 app/assets/javascripts 目录下
并在您的 application.js 中添加以下行
//= require your-js-file
Rails 会自动加载