Typoscript IMAGE 对象:禁用高度/宽度属性
有什么方法可以防止typo3/typoscript IMAGE对象将尺寸属性(高度和宽度)添加到生成的图像标签中?
更新(感谢 cascaval)!
解决方案是使用 IMG_RESOURCE 而不是 IMAGE。它显然没有那么多花哨的东西,但可以让您完全控制生成的图像标签。
10 = IMG_RESOURCE
10.file.import = uploads/tx_templavoila/
10.file.import.current = 1
10.file.import.listNum = 0
10.stdWrap.required = 1
10.stdWrap.wrap (
<img src="|" />
)
注意:这适用于 Templavoila。
Is there any way to prevent typo3/typoscript IMAGE object from adding the dimension attributes (height and width) to the generated image tag?
UPDATE (Thanks to cascaval)!
The solution is to use IMG_RESOURCE instead of IMAGE. It apparently has less bells an whistles but gives you complete control of the the generated image tag.
10 = IMG_RESOURCE
10.file.import = uploads/tx_templavoila/
10.file.import.current = 1
10.file.import.listNum = 0
10.stdWrap.required = 1
10.stdWrap.wrap (
<img src="|" />
)
Note: This is for use with Templavoila.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
否,但您可以使用IMG_RESOURCE 对象,并包装生成的图像路径,以便您获得所需的 HTML 标记。例子:
No but you can use IMG_RESOURCE object instead and wrap the resulting image path so that you get a HTML tag you want. Example:
错误的!它也适用于 IMAGE:
Wrong! It also works with IMAGE: