获取 URL 请求中值的参数名称
我有一个 Python App Engine Web 应用程序类,可以使用以下 POST url 访问该类:http://localhost:8087/moderate?5649364211118945661=on
如何获取参数 名称 - 不是 5649364211118945661
参数的值,而是一个列表包含 on
值的所有参数名称。
例如,在以下网址中:
http://localhost:8087/moderate?5649364211118945661=on&23984729386481734=on&456287432349725=on&6753847523429875=off
我怎样才能提取这个:
['5649364211118945661', '23984729386481734', '456287432349725']
非常感谢。
I have a Python App Engine web app class that I am accessing with the following POST url: http://localhost:8087/moderate?5649364211118945661=on
How can I get the Parameter name - not the value of the 5649364211118945661
parameter, but a list of all the parameter names that contain the on
value.
For example, in the following url:
http://localhost:8087/moderate?5649364211118945661=on&23984729386481734=on&456287432349725=on&6753847523429875=off
how can I extract this:
['5649364211118945661', '23984729386481734', '456287432349725']
Thanks very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 urlparse,http://docs.python.org/library/urlparse.html。
如果您正在讨论 Google App Engine 上的传入 URL,请使用
Use urlparse, http://docs.python.org/library/urlparse.html.
If you are talking about an incoming URL on Google App Engine, use