在模板中转换 Django 字节串
我在 django 作为字节字符串返回的字段中有一些 intl 字符 - 如何将其转换回以在我的模板中显示?
编辑澄清: 我的数据库中有一些字节字符串中的日文文本:
'\xe3\x83\x97\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x90\xe3\x82\xb7\xe3\x83\xbc \xe3\x83\x9d\xe3\x83\xaa\xe3\x82\xb7\xe3\x83\xbc'
我想将其转换回 プライバシー ポrisi」
(注意:Django 没有以这种方式将其保存在我的数据库中 - 数据是导入的。)
I have some intl characters in a field that django is returning as a bytestring - how can I convert it back for display in my template?
EDIT for clarification:
I have some japanese text in bytestring in my db:
'\xe3\x83\x97\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x90\xe3\x82\xb7\xe3\x83\xbc \xe3\x83\x9d\xe3\x83\xaa\xe3\x82\xb7\xe3\x83\xbc'
I'd like to convert it back to
プライバシー ポリシー"
(Note: Django didn't save it in my db this way - the data was imported.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该文本在 shell 中对我来说效果很好:
所以我不确定你在哪里遇到问题。
That text works fine for me in the shell:
so I'm not sure where you're having problems.