当我在 python 中发送 post 请求时......我该怎么做

发布于 2024-08-12 12:56:42 字数 281 浏览 2 评论 0原文

有“支票”吗?

例如... 我会有一本字典,其中包含要发送到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁的新欢旧爱 2024-08-19 12:56:42

单选按钮

<input type="radio" name="music" value="Rock" checked="checked"> Rock<br>
<input type="radio" name="music" value="Pop"> Pop<br>
<input type="radio" name="music" value="Metal"> Metal<br>

在参数中也有针对这种情况的值 {"music":"Rock"}

Radio buttons has values too

<input type="radio" name="music" value="Rock" checked="checked"> Rock<br>
<input type="radio" name="music" value="Pop"> Pop<br>
<input type="radio" name="music" value="Metal"> Metal<br>

for that case {"music":"Rock"} in params

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文