我对谷歌App Engine的2.5 Django的模板和框架的webapp。
该db.TextProperty和UTF-8和Unicode和解码/编码搞糊涂了这么多。 我真的很感激一些专家可以提供一些建议。 我用Google搜索了整整一夜,仍然有这么多问题。
我所试图做的事:
[utf-8 form input] => [Python, Store in db.TextProperty] => [When Needed, Replace Japanese with English] => [HTML, UTF-8]
根据这个答案荏苒在Python一起unicode字符串
# -*- coding: utf-8 -*-
和所有.py文件保存为UTF-8格式
这里是我的代码:
#Model.py
class MyModel(db.Model):
content = db.TextProperty()
#Main.py
def post(self):
content=cgi.escape(self.request.get('content'))
#what is the type of content? Unicode? Str? or Other?
obj = MyModel(content=content)
#obj = MyModel(content=unicode(content))
#obj = MyModel(content=unicode(content,'utf-8'))
#which one is the best?
obj.put()
#Replace one Japanese word with English word in the content
content=obj.content
#what is the type of content here? db.Text? Unicode? Str? or Other?
#content=unicode(obj.content, 'utf-8') #Is this necessary?
content=content.replace(u'ひと',u'hito')
#Output to HTML
self.response.out.write(template.render(path, {'content':content})
#self.response.out.write(template.render(path, {'content':content.encode('utf-8')})
希望一些谷歌的App Engine的工程师可以看到这个问题,并提供了一些帮助。 非常感谢!