我正在使用Casperjs下载网站。到目前为止,我使用casperjs的每个网站都运行良好。现在我想添加另一个网站。
casper.start('http://www.example.de', function() {
var page = this.getHTML();
this.echo(page);
});
如果我在桌面(Windows)上使用casperjs运行此代码,则可以正常运行。但是,如果我在服务器(centos)上运行相同的代码,它会告诉我:
<html><head></head><body></body></html>
为什么空?我甚至试图像这样执行js文件:
casperjs --ignore-ssl-errors = yes --ssl-protocol = any --web-security = no example.js
但它仍然显示我:<html><head></head><body></body></html>
一个网站 - 网址只有问题。它甚至不是https网站。简单的http和html网站。
如何解决此问题?
答案 0 :(得分:0)
我明白了。问题在于DNS。 (/etc/resolv.conf)