我将nodejs与node-phantom模块一起使用了一段时间。它工作正常。 现在我在另一台机器上尝试它并且相同的代码示例不起作用:
var Scan=function(request,response)
{
var parsedURL=url.parse(request.url,true);
if(parsedURL.query.site)
{
console.log("scanning "+parsedURL.query.site);
phantom.create(function(err,ph) {
console.log(err);
return ph.createPage(function(err,page) {
console.log(err);
return page.open(parsedURL.query.site, function(err,status) {
console.log("opened site? ", status);
if (status=="fail") {
response.writeHead(404, {'Content-Type': 'text/plain'});
response.end('URL not found');
return;
}
var filename="temp.jpg';
console.log(filename);
page.render(filename,function(err){
if (err) {
console.log(err);
return;
}
page.close(function(){
response.writeHead(404, {'Content-Type': 'text/plain'});
response.end('URL not found');
});
});
console.log("opened site? ", status);
if (status=="fail") {
response.writeHead(404, {'Content-Type': 'text/plain'});
response.end('URL not found');
return;
}
var filename="temp.jpg';
console.log(filename);
page.render(filename,function(err){
if (err) {
console.log(err);
return;
}
page.close(function(){
response.writeHead(404, {'Content-Type': 'text/plain'});
response.end('URL not found');
});
});
});
});
});
}
}
它永远不会进入createPage()回调,看起来似乎缺乏nodejs和phantomjs之间的通信。 nodejs版本:0.10.10 phantomjs版本:1.9.1
如何检查它有什么问题?
UPD:已安装新的Debian发行版,现在它有时会在控制台中发出以下警告。
警告 - 客户端没有握手的客户端应该重新连接
看起来像socket.io问题。
答案 0 :(得分:0)
很难确切地诊断,但我尝试使用以下修复程序对不匹配的引用进行编码,它似乎在v0.10.6上正常工作。这两行看起来像:
var filename="temp.jpg';
需要先修复。
我最好的猜测是你有一个32位与64位的问题......当你切换机器时它会失败或工作。所以我通过在64位系统上安装32位节点来模拟它,以显示这类事情的故障排除过程:
首先检查退出代码:
[node@hip1 blah]$ phantomjs
[node@hip1 blah]$ $?
-bash: 127: command not found
按照所有符号链接并直接运行可执行文件,例如在我的系统上:
[node@hip1 blah]$ which phantomjs
~/node/bin/phantomjs
[node@hip1 blah]$ ls -l ~/node/bin/phantomjs
lrwxrwxrwx. 1 node node 43 Jun 16 20:06 /node/node/bin/phantomjs -> ../lib/node_modules/phantomjs/bin/phantomjs
[node@hip1 blah]$ ls -l /node/node/lib/node_modules/phantomjs/bin/phantomjs
-rwxr-xr-x. 1 node node 540 Jun 16 20:14 /node/node/lib/node_modules/phantomjs/bin/phantomjs
执行那个......
[node@hip1 blah]$ /node/node/lib/node_modules/phantomjs/bin/phantomjs
/node/libs/node-v0.10.6-linux-x86/lib/node_modules/phantomjs/lib/phantom/bin/phantomjs: error while loading shared libraries: libfreetype.so.6: cannot open shared object file: No such file or directory
啊,请注意该库末尾的.6,这是一个64位系统,但是我们已经安装了32位节点以避免内存问题,并且还注意到它具有更好的性能。所以npm安装phantomjs去了32位版本。所以现在我需要这些库的devel i686版本,如果我没有指定则不会安装 - 而是我会得到x86_64版本。其中一些是这样做的:
yum install freetype-devel.i686
或debian使用apt-get install
。您可能还需要libfontconfig.so.1,它位于fontconfig-devel.i686中。
最后!
phantomjs>
之后事情应该可行。