flask编程
Posted Python程序设计教程
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flask编程相关的知识,希望对你有一定的参考价值。
from flask import Flask, render_template
app = Flask(__name__,static_url_path='/static/',template_folder='templates')
@app.route('/')
def index():
return 'hello world'
@app.route('/test')
def test():
user ="通话张"
return render_template('hello.html',user=user)
if __name__ == '__main__':
app.run()
以上是关于flask编程的主要内容,如果未能解决你的问题,请参考以下文章