您的位置 首页

ruby post的简单使用

要使用Ruby进行post操作首先需要安装mechanize 输入命令:gem install mechani…

要使用Ruby进行post操作首先需要安装mechanize

输入命令:gem install mechanize (在线安装)

我们首先看提交post的网页
 (为了防止被博客转换成html代码所以每一行前面添加了’#‘)
<#html>
 <#body>
 
 <

#
formaction=”welcome.php” method=”post”>

 Name: <

#
input type=”text”name=”name” />

 Age: <

#
input type=”text”name=”age” />

 <

#
input type=”submit”/>

 <

#
/form>

 <#body>
 <#

/html>

那么相应的ruby代码是:

require ‘mechanize’  
agent = WWW::Mechanize.new 
agent.user_agent_alias = ‘Windows IE7’ 
page = agent.get(“http://127.0.0.1/StuPHP/Testpost.html”) 
form0 = page.forms[0]  
form0.fields[0].value = “shunjian” 
form0.fields[1].value = 22 
results = form0.submit
puts results.body

此文章通过 python 爬虫创建,原文是自己的csdn 地址: ruby post的简单使用

本文来自网络,不代表找知博客立场,转载请注明出处:http://zhaozhiyong.cn/127.html

作者: 于老大

关注微博
返回顶部
//