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编程的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段9——JS中的面向对象编程

Flask 编写http接口api及接口自动化测试

12_关于flask中的宏

使用 Pygments 检测代码片段的编程语言

面向面试编程代码片段之GC

Flask之模板之宏继承包含