ainizm 发表于 2014-7-16 20:19:49

53页 网页翻页数据如何读取?

请教,如何获取 东方财富网 http://data.eastmoney.com/stockcomment/ 所有(53页)的数据
?

gto250 发表于 2014-7-16 22:43:32

http://datainterface.eastmoney.com/EM_DataCenter/JS.aspx?type=FD&sty=TSTC&st=1&sr=false&p=1&ps=50&js=var%20eokGuHCd=(x)&mkt=0&rt=46850722

其中p=1就是第一页,返回的是jison数据,自己解析

ainizm 发表于 2014-7-17 21:25:32

回复 2# gto250


    请教,这个是你是如何找出的的,请告诉我方法。谢谢
授人以鱼,不如授人以鱼。

ainizm 发表于 2014-7-17 21:34:08

回复 2# gto250



        $var = "http://datainterface.eastmoney.com/EM_DataCenter/JS.aspx?type=FD&sty=TSTC&st=1&sr=false&p=1&ps=50&js=var%20eokGuHCd=(x)&mkt=0&rt=46850722"
        $code =_INetGetSource ($var)
MsgBox(32,"",$code)
返回的中文字是乱码

gto250 发表于 2014-7-17 21:43:44

用 ObjCreate("winhttp.winhttprequest.5.1")

论坛上有抓包教程,你看看,自己抓包就可以分析出了,

gto250 发表于 2014-7-17 21:45:19

你试试这个
$var = "http://datainterface.eastmoney.com/EM_DataCenter/JS.aspx?type=FD&sty=TSTC&st=1&sr=false&p=1&ps=50&js=var%20eokGuHCd=(x)&mkt=0&rt=46850722"

$str=BinaryToString(InetRead($var),4)
MsgBox(0,"",$str)

ainizm 发表于 2014-7-17 22:31:04

回复 5# gto250


    谢谢,没问题了。
你说得抓包教程,我没找到,麻烦放个地址,我直接过去学习下。

gto250 发表于 2014-7-18 21:02:17

http://www.autoitx.com/search.php?searchid=235&orderby=lastpost&ascdesc=desc&searchsubmit=yes

你论坛就没有搜索过吗?
页: [1]
查看完整版本: 53页 网页翻页数据如何读取?