摘要: Request ——http请求中的东西,都能从request中取出来 # 请求相关信息 request.method # 提交的方法 request.args # get请求提及的数据 request.form # post请求提交的数据 request.values # post和get提交的数 阅读全文
posted @ 2024-02-29 16:33 wellplayed 阅读(16) 评论(0) 推荐(0)
摘要: FBV写法 from flask import Flask, jsonify app = Flask(__name__) app.debug = True @app.route('/') def index(): return 'hello' CBV写法 # 导入模块 from flask.view 阅读全文
posted @ 2024-02-29 15:40 wellplayed 阅读(17) 评论(0) 推荐(0)
摘要: 配置文件预览 DEFAULT_CONVERTERS = { 'default': UnicodeConverter, 'string': UnicodeConverter, 'any': AnyConverter, 'path': PathConverter, 'int': IntegerConve 阅读全文
posted @ 2024-02-29 15:26 wellplayed 阅读(19) 评论(0) 推荐(1)