管理页面上的django unicode错误

时间:2011-07-02 23:51:56

标签: django unicode django-admin

我模糊地熟悉unicode的本质,但我不确定所有部分是如何组合在一起的。在管理页面中显示特定实例时出错。

  

同时捕获UnicodeEncodeError   渲染:'ascii'编解码器无法编码   在第29位的角色你'\ u2019':   序数不在范围内(128)

这是我的模特:

class Proposal(models.Model):
    project = models.ForeignKey(Project)
    dateCreated = models.DateTimeField(editable=False)
    xml = models.TextField(max_length=1000000)

    def __str__(self):
        return str('Proposal for: %s' % self.project.name)

我已经进入我的mysql数据库并验证了DB,表和列都被整理为utf8_unicode_ci,所以我不明白为什么页面试图呈现为ascii。查看各种论坛和文档,我看到提及 str unicode 函数,但它们似乎与此无关,因为实例列表显示管理页面上的罚款。它只是显示导致问题的实际实例表单。

这是我从phpmyadmin中提取的一些xml示例...

<?xml version="1.0"  encoding="UTF-8"?>
<proposal>

  <section title="OVERVIEW">
    <section title="Introduction">
      <text>
    This proposal is not in the system because it was completed as an agreement in Word previous to us getting this application up and running.  Please refer to the attachments in this project for documentation or to see the agreement.
      </text>
    </section>
  </section>
</proposal>

我甚至试图故意排除xml(从长远来看我无法做到,因为我希望它在管理部分可编辑),但我仍然得到同样的错误,所以我'甚至不相信xml甚至是问题。如果xml不是问题,我不知道还有什么可以阻止显示这个页面。

class ProposalAdmin(admin.ModelAdmin):
    exclude = ('xml',)
admin.site.register(Project)

3 个答案:

答案 0 :(得分:43)

某处有个字符,可能在self.project.name。如果您检查整个错误消息,您可能会找到它。

但是,如果你从数据库中获得unicode结果,那么做这样的事情可能更聪明:

def __str__(self):
    return ('Proposal for: %s' % self.project.name).encode('ascii', errors='replace')

最聪明的要做的事情,因为它是recommended by the Django documentation,而是实现__unicode__功能:

def __unicode__(self):
    return u'Proposal for: %s' % self.project.name

答案 1 :(得分:8)

2019年是RIGHT SINGLE QUOTATION MARK,通常用作卷曲撇号。

使用__str__代替__unicode__导致问题可能 ,而Django's documentation建议您仅使用__unicode__

实例列表可能显示正常,因为它不包含包含撇号的字段。

答案 2 :(得分:5)

(我将此作为对安德烈的评论添加,但尚未得到50分)

这:

def __unicode__(self):
    return 'Proposal for: %s' % self.project.name

应该是

def __unicode__(self):
    return u'Proposal for: %s' % self.project.name

如果您在定义中使用一个变量来引用可能返回字符串的字符串unicode不喜欢,那么尤其如此。在返回的文本前放入“u”可以确保所有内容都是Kosher并以unicode形式返回。