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

时间:2009-11-25 10:47:12

标签: python http post send

进行“检查”?

例如...... 我会有一个字典,其中包含要发送到POST的参数。

params = {'text':'how are you?', 'subject':'hi'}

然后我会

opener.open('theurl',urllib.urlencode(params))

问题是......这些参数适用于文本框,因为我只是将值放在那里。单选按钮怎么样?我如何表示“已检查”哪个?

1 个答案:

答案 0 :(得分:2)

单选按钮的值也是

<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>

对于那种情况{“音乐”:“摇滚”}参数