当我在 python 中发送 post 请求时......我该怎么做
有“支票”吗?
例如... 我会有一本字典,其中包含要发送到 POST 的参数。
params = {'text':'how are you?', 'subject':'hi'}
那么我的
opener.open('theurl',urllib.urlencode(params))
问题是......这些参数与文本框配合得很好,因为我只是将值放在那里。单选按钮怎么样?我如何表示哪个已“选中”?
Have a "check"?
For example...
I would have a dictionary with the parameters to sent to the POST.
params = {'text':'how are you?', 'subject':'hi'}
then I would have
opener.open('theurl',urllib.urlencode(params))
The question is...those parameters work well with text-boxes, since I just put the value in there. How about radio buttons? How do I signify which is "checked"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
单选按钮
在参数中也有针对这种情况的值 {"music":"Rock"}
Radio buttons has values too
for that case {"music":"Rock"} in params