main.py 402 B

1234567891011121314151617
  1. from flask import Flask, redirect, request
  2. # 设置static为url根目录
  3. app = Flask(__name__, static_url_path="")
  4. # 文件上传大小 3MB
  5. app.config['MAX_CONTENT_LENGTH'] = 3 * 1024 * 1024
  6. @app.route("/", methods=['post', 'get'])
  7. def hello():
  8. print(request.json) # json参数
  9. print(request.args) # param参数
  10. return redirect("/index.html")
  11. if __name__ == '__main__':
  12. app.run()