|
首先,感谢飞哥开发的httphelper框架,感谢飞哥!真心感谢,这个框架帮我了大忙!
问题:
我用抓包软件已经抓到了目标页面地址和所有参数,也成功获取了页面内容,但是获取到的页面里没有我想要的东西,
<table id="finishedTable">
<thead>
<tr>
<!-- qc7236 修改 begin-->
<th id="col_SUBSCRIBE_ID">订单编号</th>
<th id="col_TRADE_ID">订单流水号</th>
<!-- qc7236 修改 end-->
<th id="col_TRADE_TYPE">业务类型</th>
<th id="col_SUBSCRIBE_STATE_NAME">订单状态</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
tbody里是空的,但是fiddler里捕获的数据里是有内容的,但是我前前后后的找了好多地址,好像没有其他地址去访问或调取这段数据了,请大家帮忙看看吧
<tbody>
</tbody>完成的这里是有tr,td的
我的代码:
public HttpResult GetHtml(string url, string cookie, string referer, string cerPath)
{
//创建Httphelper对象
HttpHelper httpHelper = new HttpHelper();
//创建HttpHelper参数设置类
HttpItem httpItem = new HttpItem()
{
URL = url, //URL 必需项
Method = "GET", //URL 可选项 默认为Get
Cookie = cookie,//字符串Cookie 可选项
Referer = referer, //来源URL 可选项
Accept = "text/html, application/xhtml+xml, */*", // 可选项有默认值
CerPath = cerPath, //证书绝对路径 可选项不需要证书时可以不写这个参数
ResultType = ResultType.String, //返回数据类型,是Byte还是String
IsToLower = false, //得到的HTML代码是否转成小写 可选项默认转小写
Allowautoredirect = true, //是否根据301跳转 可选项
AutoRedirectCookie = true, //是否自动处理Cookie 可选项
};
return httpHelper.GetHtml(httpItem);
}
|
|