丹麦项目中的 Django 编码
我厌倦了 Django 项目中的编码问题!
由于一些数据库问题,我刚刚将一个项目从“latin-1”转换为“utf-8”!我的数据库显然必须是 UTF-8 ..
HTML 页面的转换进展顺利,但是当我像以前一样进行搜索时 ?q=t%E6st 然后将其写入数据库中 .. 为什么?
在 django 项目中最好使用什么编码?
I'm getting sick of encoding problems in my Django projects!
I just converted a project from being "latin-1" to be "utf-8" due to some database problems! my database must obviously be UTF-8 ..
Convertering of HTML pages went fine but when I do a search as before ?q=t%E6st then write it just t�st in the database .. why?
What encoding is best to use in a django project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Django 本身就支持任何地方的 Unicode 数据。建议您使用 UTF-8 或 UTF-16 作为 django 项目的编码,因为 latin1 有时可能会出现问题。
请参阅 https://docs.djangoproject.com/en/dev /ref/unicode/#创建数据库
Django is made to natively support Unicode data anywhere. It is recommended that you use UTF-8 or UTF-16 as your encoding for your django project as latin1 could give problems sometimes.
See https://docs.djangoproject.com/en/dev/ref/unicode/#creating-the-database