码迷,mamicode.com
首页 > 其他好文 > 详细

flask学习2

时间:2015-02-08 15:17:17      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

模版变量


from flask import Flask, render_template
app = Flask(__name__)

@app.route(‘/‘)
def index():
	user=‘valentine‘
	return render_template(‘index.html‘,username=user)

	

if __name__ == ‘__main__‘:
	app.debug = True
	app.run()

 在index.py同级目录建立templates文件夹,下新建index.html

<!doctype html>
<html>
<head>
	<title>index</title>
</head>
<body>
	<h1>Welcome, {{username}}!</h1>
</body>
<footer>

</footer>
</html>

 {{变量}},将变量传递给html。

模版标签


 

#coding:utf-8
from flask import Flask, render_template
app = Flask(__name__)

@app.route(‘/‘)
def index():
	user=‘valentine‘
	nav_list=[u‘首页‘,u‘经济‘,u‘文化‘,u‘科技‘,u‘娱乐‘]
	return render_template(‘index.html‘,username=user,nav_list=nav_list)

	

if __name__ == ‘__main__‘:
	app.debug = True
	app.run()

 传入nav_list参数,因为python不支持ascii码,所以在第一行加上。

<!doctype html>
<html>
<head>
	<title>index</title>
</head>
<body>
	<h1>Welcome, {{username}}!</h1>
	{%for nav in nav_list%}
	<li>{{nav}}</li>
	{%endfor%}
</body>
<footer>

</footer>
</html>

for循环

 

flask学习2

标签:

原文地址:http://www.cnblogs.com/valentineisme/p/4280008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!