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.
我有一个 Symfony2 项目,我有一些 JavaScript 代码要执行。
该.js文件应该存储在项目中的什么位置以及如何调用该文件(而不是将整个脚本放在.twig.
.js
.twig
将其放入web/js,然后通过以下方式在您的 html 中访问它:
web/js
<script src="{{ asset('js/script.js') }}"></script>
或考虑使用Assetic。