摘要: flask 项目 from flask import Flask,request app=Flask(__name__) @app.route('/') def index(): print(request.path) return 'hello world' if __name__ == '__m 阅读全文
posted @ 2020-08-25 20:17 pythoner_wl 阅读(342) 评论(0) 推荐(0) 编辑