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

flask简

时间:2018-07-21 12:17:36      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:%s   style   app   引擎   log   deb   模板   bsp   html   

flask采用jinja2作为模板语言,其强大程度高于django所带模板引擎。

from flask import Flask,render_template,request,url_for

app = Flask(__name__,static_folder=static,)        #实例化一个Flask对象,可设置其静态文件位置,模板路径等等参数,静态文件路径默认是static,模板路径默认是temlates


@app.route(/)
def hello_world():
    return Hello World!

@app.route("/login")
def login():
    return render_template("login.html")
@app.route("/index/<int:username>")
def index(username):
    return "%s"%(username)

with app.test_request_context():
    print(url_for("index",username=123))               #url_for构造路径,格式:url_for(函数名,函数参数)----->/index/123

if __name__ == __main__:                             #在此脚本下运行app
    app.run(debug=True)

 

flask简

标签:%s   style   app   引擎   log   deb   模板   bsp   html   

原文地址:https://www.cnblogs.com/gaoyukun/p/9345509.html

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