HTTP
Posted 浅色夏沫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTTP相关的知识,希望对你有一定的参考价值。
from flask import Flask
app = Flask(__name__) # 定义一个应用
@app.route(\'/\') # 装饰器 子定义一个路径的映射
def index():
return \'hello\'
@app.route(\'/profile/<uid>\')
def profile(uid):
return \'profile:\' + uid
if __name__ == \'__main__\':
app.run(debug=True)
以上是关于HTTP的主要内容,如果未能解决你的问题,请参考以下文章