如何呈现Google App Engine模板?

时间:2011-01-16 00:29:34

标签: python google-app-engine

我知道您可以使用以下内容渲染模板:

    template_values = {
        'contacts': contacts,
        'url': url,
        'url_linktext': url_linktext,
    }

    path = os.path.join(os.path.dirname(__file__), 'index.html')        
    self.response.out.write(template.render(path, template_values))

我的问题是,如果它只是一个用于捕获数据的简单表单,我将如何呈现模板('addcontact.html)?

谢谢!

1 个答案:

答案 0 :(得分:3)

template.render接受2个参数,当没有要传递的值时,只需使用此{}

所以它将是template.render(templatefile,{})