尝试在 Django 和 MySQL 中保存 unicode 字符串(韩语)时出现错误。我遇到的第一个Incorrect string value (Exception Value: Incorrect string value: '\xEA\xB0\x95\xED\x95\x98...' for column 'object_repr' at row 1)
问题是数据库表中每一列的“字符串值不正确”错误。但是,我通过更改列排序规则和整个数据库字符集来解决这个问题。
我得到的新错误与models.py中的unicode(self)方法有关。我的models.py如下:
from django.db import models
# Create your models here.
class User(models.Model):
full_name = models.CharField(max_length=60)
email = models.EmailField(unique=True)
password = models.CharField(max_length=128)
birthday = models.DateField(null=True, blank=True)
gender = models.PositiveIntegerField(null=True, blank=True)
location = models.CharField(max_length=60, null=True, blank=True)
captcha = models.CharField(max_length=60, null=True, blank=True)
register_date = models.DateTimeField()
lastLogin_date = models.DateTimeField(null=True)
num_logins = models.PositiveIntegerField()
def __unicode__(self):
return self.full_name
当__unicode__
函数尝试输出 utf8 字符时会产生错误...
有谁知道如何解决这个错误?