繁体   English   中英

python编码/解码问题

[英]python encoding/decoding problem

我正在尝试使用python的Template对象创建html电子邮件。 但是,当应用程序尝试发送电子邮件时,出现错误:

File "/base/data/home/apps/hanksandbox/1.350486862928605153/main.py", line 573, in post
html = messages.email_document_html(document)
File "/base/data/home/apps/hanksandbox/1.350486862928605153/messages.py", line 109, in email_document_html
description = document.get_description()
File "/base/python_runtime/python_dist/lib/python2.5/string.py", line 170, in substitute
return self.pattern.sub(convert, self.template)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 763: ordinal not in range(128)

错误所指向的代码如下所示:

def email_document_html(document):
email_document = Template("""
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    ${stylesheet}
</head>
<html>
<body>
<h1 id="mainhead">Essays</h1>
<div class="document">
<span class="info">At ${date} ${author} published:</span><br/><hr/>
<a href="${domain}/${author}/document/${filename}/" target="_blank"><h1 class="title">${title}</h1></a>
<p class="description">${description}</p>
</div>
</body>
</html>
""")
return email_document.substitute(
                                 stylesheet=style,
                                 date=str(document.date),
                                 author=document.author.username,
                                 domain=domainstring,
                                 filename=document.filename,
                                 title=document.title,
                                 description = document.get_description()
                                 )

我的IDE使用UTF-8作为其字符集。 我尝试在文件中添加# coding: utf-8 我尝试在各种地方添加.encode("utf-8").decode("utf-8") ,特别是在'document.get_description()'之后。 但是我正在抓稻草。

有什么建议么?

随处使用unicode

email_document = Template(u"""
 ...

“ Python中的Unicode,完全神秘化”

在模板字符串之前放置u ,以指定它应为unicode字符串。 除非另有说明,否则Python <3将类似的字符串解释为ASCII。

email_document = Template(u"""
...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM