编程语言
首页 > 编程语言> > 在Google App Engine中,如何遍历表单字段(python,wsgiref.handlers)

在Google App Engine中,如何遍历表单字段(python,wsgiref.handlers)

作者:互联网

使用python和wsgiref.handlers,我可以使用self.handler.request.get(var_name)从表单中获取单个变量,但是如何遍历所有表单变量,无论它们是来自GET和POST?是这样吗

对于self.handler.request.fields中的字段:
    值= self.handler.request.get(字段)

同样,它应同时包含POST中包含的字段和查询字符串中的字段,如GET请求中一样.

在此先感谢大家…

解决方法:

http://code.google.com/appengine/docs/python/tools/webapp/requestclass.html#Request_arguments

for field in self.request.arguments():
  value = self.request.get(field)

标签:google-app-engine,python,wsgiref
来源: https://codeday.me/bug/20191024/1917436.html