打开图形图像 url 与转换后的特殊字符 XKB 符号的问题
我尝试使用喜欢按钮并因此打开图表。
我的问题是,“&”和“$”字符始终替换为 &和 %24
当然,这是正常情况,但我需要一个干净的 $ 并且那里没有实体,因为否则链接不适用于该图像。
我可以看到,facebook 的原始输出产生 \u0024 等等(似乎是 XKBSymbols)。但是,如果我尝试将此符号放入typo3 元标记的链接中,它也不起作用。
我已经尝试过:
#page.headerData.12345.htmlSpecialChars = 0
#page.headerData.12345.htmlSpecialChars.preserveEntities = 1
#page.headerData.12345.rawUrlEncode = 0
解决这个问题,但这些都不起作用。
请给我一个有用的提示。 谢谢
I try to use the like-Button and therefor the open graph.
My problem is, that "&" and "$" chars are always replaced by & and %24
Of course, thats the normal case, but I need a clean $ and no entity there, becuase otherwise the link is not working for this image.
I could see, that facebook´s raw output produces \u0024 and so on (seems to be XKBSymbols). But if I try to put this symbols in the link in my typo3 meta-tag, it doesnt work either.
I already tried:
#page.headerData.12345.htmlSpecialChars = 0
#page.headerData.12345.htmlSpecialChars.preserveEntities = 1
#page.headerData.12345.rawUrlEncode = 0
to solve this problem, but none of those work.
Please give me a useful hint.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试通过 htmlspecialchar php 函数写入您的 php 代码并将其添加到标头
$GLOBALS['TSFE']->additionalHeaderData['somekey'] = '...'
try to write to your php code trough htmlspecialchar php function and add it to header with
$GLOBALS['TSFE']->additionalHeaderData['somekey'] = '...'