from flask import Flask,render_template,request app=Flask(__name__) @app.route('/',methods=['POST','GET']) def index(): if request.method =='POST': if ...
確定! 回上一頁