1
當在我的Python代碼模板不工作我有谷歌應用程序引擎:顯示HTML表單
the_button = '''<form action="/edit" method="get" >
<input type="submit" name="edit" value="Edit" />
</form>'''
template_values = { 'the_button':the_button }
path = os.path.join(os.path.dirname(__file__), 'the.html')
self.response.out.write(template.render(path, template_values))
的問題是,當我在頁面中看到它會顯示按鈕,但不可點擊,然後當我查看html的頁面源代碼,它不顯示代碼。
可能是什麼問題?
謝謝!
在`the.html`模板是什麼? – 2011-01-26 04:19:42
在模板{{the_button}} – Peter 2011-01-26 06:24:31