0

我遇到了一个典型的 utf-8 编码问题,但到目前为止我还无法解决它。

class StatsTandE(webapp2.RequestHandler):
  def get(self):

    conn = rdbms.connect(instance=_INSTANCE_NAME, database='origami')
    cursor = conn.cursor()
    cursor.execute('SELECT ui.displayName, ui.title, ui.costCenter FROM views AS v')
    results = [[str(row[0]), str(row[1]), str(row[2])] for row in cursor.fetchall()]
    logging.info('results identified as %s', results)

    template_file_name = 'templates/stats_results.html'
    template_values = {
      'results': results,
    }

    path = os.path.join(os.path.dirname(__file__), template_file_name)
    self.response.out.write(template.render(path, template_values))
    conn.close()

我看到的错误是:

UnicodeEncodeError: 'ascii' codec can't encode character u'\xa0' in position 4: ordinal not in range(128)

str(row[0])str(row[0]).encode('utf-8')也没用。。。

有什么建议么?

4

1 回答 1

1

尝试更改str(row[0])unicode(row[0]).

更新:正如其他人所说:你甚至不应该使用unicodestr除非你需要它。试试吧row[0], row[1], row[2]。当您需要显示它时,请执行以下操作:row[0].encode('utf8').

于 2013-01-16T21:52:24.000 回答