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.
我不确定如何获得相当于:path('public') 在 Javascript 文件中工作?
我基本上只需要公共文件夹的路径来显示我的 JS 文件中的一些图像。
您可以选择在文档头部的 JavaScript 全局命名空间中创建一个变量,并使用 PHP 来回显公共路径。
<head> <script> var public_path = '{{ path('public') }}'; </script> ...