Python uses the Flask framework to get the current query parameter method

Source: Internet
Author: User

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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.