我应该确保我的所有 Web 应用程序代码都是 UTF-8 吗?
我有一个仅包含英语字符串的 Django 网站。我会将其本地化为其他语言。我还没有设置任何类型的文件编码选项。是否需要将我的所有 Python 代码转换为 UTF-8?这是一个好的做法吗?如果是这样,我是否需要实际将文件转换为 UTF-8,还是只需将此代码段添加到我的每个 Python 文件中 # -*-coding: utf-8 -*-
谢谢。
I have a Django site that contains only English language strings. I'll be localising this to other languages. I haven't set any sort of file encoding options. Do need to convert all my Python code to UTF-8? is this a good practice? If so, do I need to actually convert the file to be UTF-8 or do I simply need to add this snippet to each of my Python files # -*- coding: utf-8 -*-
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
#coding: utf-8
行仅对于直接包含特殊字符的文件是必需的。根据您想要实现本地化的方式,您必须注意如何处理字符串。在Python2中,您应该使用
unicode()
对象,而在Python3中,可以使用普通的str()
对象。The
# coding: utf-8
line is only necessary for files which contain special characters directly. Depending on how you want to achieve l10n, you have to take care how you process the strings.In Python2, you should use
unicode()
objects, while in Python3, normalstr()
ings are the thing to use.