http的get请求
#!/usr/bin/python3"""http常用get和post请求演示默认只处理get请求""" from flask import Flask,url_for,redirect,request app = Flask(__name__) @app.route('/') def index(): return 'hello world' @app.route('/admin')def hello_admin():