《python網絡編程學習筆記(10):webpy框架》(http://www.cnblogs.com/xiaowuyi/archive/2012/11/15/2771099.html#3006443)的解釋。html
網友@etfengyun近期提出疑問,在webpy0.33上利用模板時出現錯誤。因爲我按@etfengyun的做法沒有再現出錯誤,因此很差判斷錯誤的緣由,這裏把具體利用模板的步驟再詳細解釋一下。python
一、環境:python2.7.x+webpy0.33(下載地址:http://webpy.org/static/web.py-0.33.tar.gz)web
二、創建test文件夾,將webpy0.33解壓出來的web文件夾存在放在test下,並創建testwebpy.py文件以及創建templates文件夾,在templates文件夾下,創建index.html文件,該文件內容爲:編程
$def with (name) $if name: I just wanted to say <em>hello</em> to $name. $else: <em>Hello</em>, world!
三、testwebpy.py的代碼:網絡
##@小五義http://www.cnblogs.com/xiaowuyi import web render = web.template.render('templates/') urls = ( '/', 'index' ) class index: def GET(self): name='Bob' return render.index(name) #return "Hello, world!" if __name__ == "__main__": app = web.application(urls, globals()) app.run()
運行效果:app
代碼2:框架
##@小五義http://www.cnblogs.com/xiaowuyi import web render = web.template.render('templates/') urls = ( '/(.*)', 'index' ) class index: def GET(self,name): i=web.input(name=None) return render.index(name) #return "Hello, world!" if __name__ == "__main__": app = web.application(urls, globals()) app.run()
運行效果:python2.7