import flaskapp=flask.Flask("web")@app.route("/",___________)def index(): #...... return "hello"app.run()程序要求能接收POST数据,缺失的语句是 A: methods=["GET"] B: methods=["POST"] C: method=["GET"] D: method=["POST"]
import flaskapp=flask.Flask("web")@app.route("/",___________)def index(): #...... return "hello"app.run()程序要求能接收POST数据,缺失的语句是 A: methods=["GET"] B: methods=["POST"] C: method=["GET"] D: method=["POST"]
1