在我的 rails 应用程序中,在 assets/javascripts 的一个 javascript 文件中,第一行是
console.log("This javascript file is included")
. 在我的 application.html 中,我将其包含在头部之后:
<script type = "text/javascript">
console.log("Logging from the application.html")
</script>
我没有在我的任何视图中明确包含 javascript 文件,但控制台会打印:
This javascript file is included.
Logging from the application.html