Form parameter
It is to change the string parameter GET to POST

Non-form pass parameters. It is json parameter transmission
Among them, pay attention to request.body
request.body is a binary type
request.body.decode() is converted to a string
json.loads(request.body.decode()) converted to dictionary

Also get () method

Take Baidu search csdn as an example The output is as follows:...
I. Introduction: The most commonly sent request in the front end is the GET request and the post request. The get request can only pass the Query parameter. The query parameters are spelled on the req...
Direct code: ... ...
Article Directory Analysis on the phenomenon of interception in the back end of POST request parameters Overview Cause Replay to sum up Business aspect Testing aspects Analysis on the phenomenon of in...
1.0 Request data is Form-DATA 2.0 Request data is X-WWW-Form-Urlencoded first step: Test Plan -thread group -HTTP request -check the results tree Step 2: Definition directly in the parameter third ste...
In recent work, the gateway needs to be modified. Previously, the gateway only supported submit requests for form forms. Here I will change the gateway that only supports form request requests to supp...
The content-type in the header of the http request is multipart/form-data, which is used to pass multiple types of parameters. For example, you can pass the attachment and pass the text. In the body (...