在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)
上一篇:通读Python官方文档之wsgiref(未完成)


下一篇:使用WSGI提供html时出错