request.GET
request.GET是向服务器发出的http请求中“GET”变量的字典,例如:
www.google.com?thisIsAGetVarKey=3&thisIsAnotherOne=hello
request.GET将是:
{"thisIsAGetVarKey": 3, "thisIsAnotherOne":"hello"}
因为request.GET是一个字典,所以它有一个方法.keys()来检索字典中键的值
可通过.get(‘key’)来获取‘key’相应的值
转载自:
https://www.cnpython.com/qa/61449