>  기사  >  백엔드 개발  >  javascript - js如何采集页面

javascript - js如何采集页面

WBOY
WBOY원래의
2016-06-06 20:49:041276검색

php采集页面

一般通过curl、file_get_contents来采集,如:

<code class="lang-php">$ch=curl_init($post_url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0");
$con=curl_exec($ch);
</code>

js也能采集页面吗,有什么方法?

回复内容:

php采集页面

一般通过curl、file_get_contents来采集,如:

<code class="lang-php">$ch=curl_init($post_url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0");
$con=curl_exec($ch);
</code>

js也能采集页面吗,有什么方法?

node+1,比如这货http://phantomjs.org/

js由于有跨域问题,是不能做采集任务的,不过你可以考虑下node.js

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.