TYPO3 8.7.32:html 在设置中作为文本输出
TYPO3 8.7.32: html is output as text in setup
你好,我使用了 mindshap cookie 提示扩展,它也显示在前端。除了 link 之外的所有内容也都正确输出。有谁知道我如何将 link 添加到 hint.message 或者我做错了什么。
plugin.tx_mindshapecookiehint {
_LOCAL_LANG.de {
hint.learnMore = Weitere Informationen.
hint.dismiss = OK
hint.message = Diese Webseite verwendet Cookies. Wenn Sie weiter auf dieser Seite bleiben, stimmen Sie den <a class="cookie-link" href="foo">Datenschutzbestimmungen</a> zu.
}
}
解法:
我在 Cookie 文件中添加了这个:
message: '<f:format.raw><f:translate key="hint.message" /></f:format.raw>'
提前致谢
点击本地语言标签只是明文。编码通常发生在输出端。最有可能的流体模板用于输出。默认情况下 html-encodeds 以避免安全问题。
您可以使用流畅的视图助手 来避免在您的模板中转义。 (但你的语言字符串必须有适当的编码
永远不要将用户输入 format.raw 因为这几乎肯定是一个安全问题
你好,我使用了 mindshap cookie 提示扩展,它也显示在前端。除了 link 之外的所有内容也都正确输出。有谁知道我如何将 link 添加到 hint.message 或者我做错了什么。
plugin.tx_mindshapecookiehint {
_LOCAL_LANG.de {
hint.learnMore = Weitere Informationen.
hint.dismiss = OK
hint.message = Diese Webseite verwendet Cookies. Wenn Sie weiter auf dieser Seite bleiben, stimmen Sie den <a class="cookie-link" href="foo">Datenschutzbestimmungen</a> zu.
}
}
解法: 我在 Cookie 文件中添加了这个:
message: '<f:format.raw><f:translate key="hint.message" /></f:format.raw>'
提前致谢
点击本地语言标签只是明文。编码通常发生在输出端。最有可能的流体模板用于输出。默认情况下 html-encodeds 以避免安全问题。
您可以使用流畅的视图助手
永远不要将用户输入 format.raw 因为这几乎肯定是一个安全问题