私は仕事に{f:uri.image}
を取得いくつかの問題を抱えているが、これはレンダリングされません: TYPO3流体F:幅/高さ属性/ Fなし画像:uri.image問題
<img src="{f:uri.image(src:person.firstImage,treatIdAsReference:1, width:150c,height:150c,cropVariant:'square')}"/>
person.firstImage
TYPO3\CMS\Extbase\Domain\Model\FileReference
です。
多分あなたはエラーを見つけますか?一方
、これは動作します:
<f:image class="image-author" image="{person.firstImage}" width="150c" height="150c" cropVariant="square"/>
を...しかし、出力は常に応答CSSと競合するwidth="150" height="150"
HTML属性を、特色にします。
f:image
がソースタグで出力されるのを防ぐ方法はありますか?おそらく、もし私がthe VHを見ると?
ああ!本当にありがとう!どうやら、 'src'ではなく' image'ですね。それは間違っています https://docs.typo3.org/typo3cms/ExtbaseGuide/Fluid/ViewHelper/Uri/Image.html? – Urs
新しいPR https://github.com/TYPO3-Documentation/TYPO3CMS-Guide-Extbase/pull/83 – Urs
「画像」は優先され、高速です – minifranske