如何在ruby中用http 发送get,post请求
答案:1 悬赏:10 手机版
解决时间 2021-02-16 06:52
- 提问者网友:wodetian
- 2021-02-15 11:25
如何在ruby中用http 发送get,post请求
最佳答案
- 五星知识达人网友:刀戟声无边
- 2021-02-15 12:15
本文实例讲述了python通过get,post方式发送http请求和接收http响应的方法。分享给大家供大家参考。具体如下:
测试用CGI,名字为test.py,放在apache的cgi-bin目录下:
#!/usr/bin/python
import cgi
def main():
print "Content-type: text/html\n"
form = cgi.FieldStorage()
if form.has_key("ServiceCode") and form["ServiceCode"].value != "":
print " Hello",form["ServiceCode"].value,""
else:
print " Error! Please enter first name."
main()
python发送post和get请求
get请求:
使用get方式时,请求数据直接放在url中
测试用CGI,名字为test.py,放在apache的cgi-bin目录下:
#!/usr/bin/python
import cgi
def main():
print "Content-type: text/html\n"
form = cgi.FieldStorage()
if form.has_key("ServiceCode") and form["ServiceCode"].value != "":
print " Hello",form["ServiceCode"].value,""
else:
print " Error! Please enter first name."
main()
python发送post和get请求
get请求:
使用get方式时,请求数据直接放在url中
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯