hello_world.py from flask import Flask app = Flask(__name__) @app.route('/') # '/'代表访问的是跟地址,默认是get请求 def index(): return ...
確定! 回上一頁