- Get Started
- 基础
- 进阶
- 技巧
- 插件推荐
- API
- Get Started
- 基础 API
- QueryList html($html)
- string getHtml($rel = true)
- QueryList rules(array $rules)
- QueryList range($selector)
- QueryList removeHead()
- QueryList query(Closure $callback = null)
- Collection getData(Closure $callback = null)
- Array queryData(Closure $callback = null)
- QueryList static getInstance()
- void destruct()
- void destructDocuments() 静态方法
- QueryList pipe(Closure $callback)
- 特殊 API
- 高级 API
- 默认插件
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
忽略 HTTP 错误
QueryList遵循将业务与错误分离的原则, HTTP请求传输过程中如果出现的错误,QueryList将会抛出异常。
QueryList的HTTP客户端基于GuzzleHttp
,它提供了丰富的HTTP异常类型,用户可以自行设计根据不同的异常类型做不同的处理。
如果你觉得麻烦,并不想每次都去处理HTTP异常,选择直接忽略,让程序继续运行下去,做法可以参考下面方式:
对内置的get()
进行封装:
use QL\QueryList;
use GuzzleHttp\Exception\RequestException;
$ql = QueryList::getInstance();
//注册一个myGet方法到QueryList对象
$ql->bind('myGet',function ($url,$args = null,$otherArgs = []){
try{
$this->get($url,$args,$otherArgs);
}catch(RequestException $e){
$this->setHtml('');
// print_r($e->getRequest());
echo "Http Error \r\n";
}
return $this;
});
注册的myGet()
方法用法与内置的get()
方法完全相同,唯一区别就是遇到HTTP错误不会抛出异常让程序终止运行。
$ql->myGet('https://www.sfasd34234324.com')->find('...')->....;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论