继续上一节helloworld的基础环境(如果有看不明白这一节的同学,可以先看看上一节的内容,上一节主要说明了我的配置环境,包括文件夹路径等),按照官方guide上面说明的模板功能。
模板,据我的理解是,页面统一通过html文件和后台的类来对应,web框架为html文件获取类中的参数提供了完整的机制。写个例子。1 在u01目录下,创建template文件夹,在该文件夹下创建index.html文件。该文件的内容如下:
$def with(name)
$if name:
I just wanted to say <em>hello</em> to $name.
$else:
<em>Hello</em>, world!
2 在昨天的基础上,将code.py文件修改为如下内容:(文中红色的代码是相对昨天新加的内容)
import web
render = web.template.render('templates/')
urls = (
'/', 'index'
)
class index:
def GET(self):
name = 'JasonLeezhi'
return render.index(name)
if __name__ == "__main__":
app = web.application(urls, globals())
app.run()
render = web.template.render('templates/') 该行代码表示:框架会去templates目录下查找html文件。
return render.index(name) 该行代码注释:index表示template目录下html的文件名,name表示该文件中的参数值是多少。
3 在cmd中进入到e:\u01目录下,执行python code.py命令。通过浏览器访问http://localhost:8080/ 结果如下: