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 应用程序中导出过程的一部分,我需要让所有 Twig 资产()调用只返回一个相对路径,如下所示:
images/image.png
默认行为是在这些前面加上一个“/”字符。我如何摆脱那个正斜杠?我只想为这一进程更改它,而不是为应用程序的其余部分更改。
我不是很喜欢这个解决方案,但它有效:
{{ asset('something.png') | slice(1) }}
slice(x, y)创建一个以 x 开头的子字符串,长度为 y(如果提供)。
slice(x, y)