jinja2模板接受

from flask import Flask,render_template


app = Flask(__name__)#template_folder='templates',默认就是templates,也可以指定
#比如来需求要求把模板文件放在c盘中

# app = Flask(__name__,template_folder='c:/templates') 就可以这样指定

app.debug=True


@app.route('/')
def hello_world():
    return render_template('index.html')


@app.route('/list/')
def posts_list():
    return render_template('posts/list.html')

if __name__ == '__main__':
    app.run()

 

posted @ 2018-09-18 14:55  python成长中  阅读(163)  评论(0编辑  收藏  举报