jae-jae / QueryList

:spider: The progressive PHP crawler framework! 优雅的渐进式PHP采集框架。
https://querylist.cc
2.65k stars 440 forks source link

特定网页采集失败 #98

Closed DengSihan closed 4 years ago

DengSihan commented 4 years ago

采集地址

https://www.zdnet.com/article/microsofts-new-unified-office-mobile-app-is-here-and-more-new-features-are-coming/

采集文章头时

...
$dom = QueryList::get("https://www.zdnet.com/article/microsofts-new-unified-office-mobile-app-is-here-and-more-new-features-are-coming/");
$title = $dom->find("h1[itemprop=headline]")->text();
echo $title;

结果为空

补充:使用另一个 html 解析器 php-html-parser 时可正常采集