This article mainly introduced Python uses the flask frame to obtain the current query parameter The method, the example analysis Query_string obtains the query parameter the technique, needs the friend to be possible to refer to under
This example describes how Python uses the Flask framework to get the current query parameters. Share to everyone for your reference. Specifically as follows:
This code implements the Python flask framework to get the current query parameters, that is, all the parameters in the QueryString
?
| 1 2 3 4 5 6 7 8 9 10 11 12-13 |
From flask import flask, render_template, request # Initialize the flask application app = Flask (__name__) # ' is a cat Ch all route, to catch any request the user does @app. Route ('/") def index (): QS = request.query_string return render_temp Late (' index.html ', query_string=qs) if __name__ = = ' __main__ ': App.run (host= "0.0.0.0", Port=int ("80"),) |
I hope this article will help you with your Python programming.