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.
複数の値から構築された文字列を使用して画像を表示する方法はありますか? すなわち。パスに属性値が含まれる画像を表示したいと考えています。私のコードの例(動作しません):
<img src="{'subdirectory/' + @title + '150p.png'}" />
これは、現在のノードの「タイトル」属性が「メイン」の場合、パス「サブディレクトリ/main150p.png」の画像を表示しようとして失敗します。
XPathではなくJavascriptで考えているようです。試す<img src="{concat('subdirectory/', @title, '150p.png')}" />
<img src="{concat('subdirectory/', @title, '150p.png')}" />