Django RSS-feed 转义 €
我在 django 中制作了一个 rss-feed,我希望将 € 转换为 €
。我已经使用 |escape
来转义链接标签等。但不知何故 |escape
不适用于 €。
现在有人有办法逃脱 € 吗?
I've made a rss-feed in django and i wish to turn € into €
. I already use |escape
to escape link tags and such. But somehow |escape
doesn't work on €.
Does anybody now a way to also escape € ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
€ 是一个完全有效的 utf-8 字符。您几乎肯定会创建 utf-8 输出,因此不需要转义。
€ is a perfectly valid utf-8 character. You are almost certainly creating utf-8 output, therefore it doesn't need escaping.