gpt4 book ai didi

python - 使用 Django 在数据库中插入 utf8 字符

转载 作者:太空宇宙 更新时间:2023-11-03 13:53:04 40 4
gpt4 key购买 nike

在 Django 中如何在插入数据库时​​使用 unicode

例子:

       name =request.POST["name"] //This may be in Chinese or any other lanuages
usr = Users(name=name)
usr.save()

Cent os使用的Python版本是python 2.4.3,mod python版本是1.2.1_p2-1

最佳答案

你应该检查你的数据库在你试图插入的表上是否有 utf8 字符集。

对于 mysql

show create table TableName;

改变编码

   alter table TableName DEFAULT CHARACTER SET utf8;

关于python - 使用 Django 在数据库中插入 utf8 字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3237326/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com