gpt4 book ai didi

python - 在谷歌应用引擎中,如何遍历表单字段(python,wsgiref.handlers)

转载 作者:太空宇宙 更新时间:2023-11-03 14:34:53 27 4
gpt4 key购买 nike

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

对于 self.handler.request.fields 中的字段:
value = 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 - 在谷歌应用引擎中,如何遍历表单字段(python,wsgiref.handlers),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2981078/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com