利用gae编写blog程序时,添加blog出问题。

作为初学者,跟着书本试着编写个blog程序,好不容易运行成功,试着添加blog时发现,保存好的blog 的title为保存时的内容,而content为none,而且index.html的代码中不能写汉字,要不然就是乱码。。。
各位大虾,再帮在下一把吧!不胜感激!

[code="python"]
def post(self):
entry = Entry()
entry.title = self.request.get('content') # 你把content放到title里了,content字段没有赋值,当然为空

if users.get_current_user():
    entry.author = users.get_current_user()

entry.put()
self.redirect('/')

[/code]

[code="java"]


[color=red][/color] my blog


my blog

login add

        {% for entry in entries %}
        <h2>title:{{ entry.title }}</h2>
        <p>
            author:{{ entry.author }}<br/>
            time:{{ entry.create_time }}<br/>
            content: {{ entry.content }} 
        </p>
        {%endfor%}
</body>


[/code]

[code="java"]



my blog


my blog

login add

        {% for entry in entries %}
        <h2>title:{{ entry.title }}</h2>
        <p>
            author:{{ entry.author }}<br/>
            time:{{ entry.create_time }}<br/>
            content: {{ entry.content }} 
        </p>
        {%endfor%}
</body>


[/code]

但添加blog时,内容保存到标题上,标题没保存?不明白