python爬虫之__doPostBack

get请求,数据在源码中,唯有链接的特征为:javascript: __doPostBack(‘GV_Data c t l 02 ctl02 ctl02LinkButton1’, ‘’)
乍一看,像是js加密,全局搜索到

function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}

然而,并非是js加密,详情页的id为数字
后抓包中意外发现,有个302,然后再请求详情页,而这个302是post请求,参数中包含:GV_Data c t l 02 ctl02 ctl02LinkButton1
随解之
解决方法

  • 从列表页拿所有参数,及详情页的 GV_Data c t l 02 ctl02 ctl02LinkButton1这个参数,参数为空的传空
  • post请求之即可获取数据

你可能感兴趣的:(python,爬虫,doPostBack,爬虫填坑之路)