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 asset() 呼び出しが相対パスのみを返すようにする必要があります。
images/image.png
デフォルトの動作では、これらの先頭に「/」文字を付けます。そのスラッシュを取り除くにはどうすればよいですか? アプリケーションの残りの部分ではなく、この 1 つのプロセスに対してのみ変更したいのです。
私はこのソリューションがあまり好きではありませんが、うまくいきます:
{{ asset('something.png') | slice(1) }}
slice(x, y)x で始まり、長さが y (指定されている場合) の部分文字列を作成します。
slice(x, y)