gpt4 book ai didi

javascript - 从 CLI 或 Web 调用时 PhantomJS 挂起

转载 作者:可可西里 更新时间:2023-11-01 01:16:26 24 4
gpt4 key购买 nike

我正在尝试使用 phantomJS 捕获 URL 的屏幕截图,但是当我调用 phantomJS(从命令行或 Web 应用程序)时,它挂起并且似乎永远不会执行“exit()”调用。我似乎找不到任何错误消息,并且在我杀死它之前它一直在运行。这是传递给 phantomjs 命令的 JS 文件:

var page = require('webpage').create();
var system = require('system');
var script_address = '';
var page_to_load = '';
var members_id = '';
var activities_id = '';
var folder_path = '';

if (system.args.length < 5)
{
console.log('Usage: phantom_activity_fax.js script_address page_to_load members_id activities_id folder_path');
console.log('#Args: '+system.args.length);
phantom.exit();
}//END IF SYSTEM.ARGS.LENGTH === 1

//ASSIGN OUR ARGUMENTS RECIEVED
script_address = system.args[0];
page_to_load = system.args[1];
members_id = system.args[2];
activities_id = system.args[3];
folder_path = system.args[4];

console.log(system.args[0]);
console.log(system.args[1]);
console.log(system.args[2]);
console.log(system.args[3]);
console.log(system.args[4]);

//OPEN OUR PAGE WITH THE VALUES PROVIDED
page.open(page_to_load, function () {
console.log("Entering Anonymous Function, Beginning RENDER:\n");
page.render(folder_path+members_id+'_'+activities_id+'.png');
phantom.exit();
});

我看到值被推送到控制台,但在那之后它只是挂起:(我试过网络检查器,但无法理解在哪里执行 __run() 调用,并且当我在调用中添加了 debugger-autorun=yes :(。

这是挂起时我从命令行获得的输出(作为 root 用户):

[root@wv-wellvibe2 faxes]# phantomjs /var/www/wv-wellvibe2-test/javascripts/phantom_activity_fax.js https://wv-wellvibe2-test/manual_scripts/phantom_js_test_page.php 397 0 /var/www/wv-wellvibe2-test/uploads/images/faxes/
/var/www/wv-wellvibe2-test/javascripts/phantom_activity_fax.js
https://wv-wellvibe2-test/manual_scripts/phantom_js_test_page.php
397
0
/var/www/wv-wellvibe2-test/uploads/images/faxes/

这是我以自己的用户身份运行它时得到的输出,但我没有在指定文件夹(传真)中看到图像文件:

[user@wv-wellvibe2 ~]$ phantomjs /var/www/wv-wellvibe2-test/javascripts/phantom_activity_fax.js https://wv-wellvibe2-test/manual_scripts/phantom_js_test_page.php 397 0 /var/www/wv-wellvibe2-test/uploads/images/faxes/
/var/www/wv-wellvibe2-test/javascripts/phantom_activity_fax.js
https://wv-wellvibe2-test/manual_scripts/phantom_js_test_page.php
397
0
/var/www/wv-wellvibe2-test/uploads/images/faxes/
Entering Anonymous Function, Beginning RENDER:
[user@wv-wellvibe2 ~]$

不幸的是,正如我所说,命令完成但没有在传真文件夹中保存 .png。这是该文件夹的权限:

[root@wv-wellvibe2 faxes]# ls -la
total 12
drwxr-xr-x 3 root apache 4096 May 16 15:31 .
drwxr-xr-x 5 apache apache 4096 May 16 14:14 ..
drwxr-xr-x 6 apache apache 4096 May 20 15:05 .svn

如果还有什么我可以提供的,请告诉我!谢谢!

(这里要求的是调用Phantom JS进程的PHP脚本)

header("Date: " . date('Y-m-d H:i:s'));
//GET THE SMARTY CONFIG
include_once $_SERVER['DOCUMENT_ROOT'] . "/smarty/configs/config.php";

//VARS USED LATER
$process_script = $_SERVER['DOCUMENT_ROOT'] . '/javascripts/phantom_activity_fax.js';
$page_to_load = 'https://' . $_SERVER['HTTP_HOST'] . '/manual_scripts/phantom_js_test_page.php';
$members_id = $_SESSION['members_id'];
$activities_id = 0;
$folder_path = $_SERVER['DOCUMENT_ROOT'] . 'uploads/images/faxes/';
$system_response = '';


$call = "phantomjs --remote-debugger-port=65534 --remote-debugger-autorun=yes " . $process_script . " " . $page_to_load . " " . $members_id . " " . $activities_id . " " . $folder_path;

echo 'CallingSystemWith: ' . $call . '<br />';

try
{
$system_response = system($call);

echo '<br />SystemResponse: ' . $system_response . '<hr />';
} catch (Exception $exc) {
echo $exc->getTraceAsString();
}//END TRY / CATCH

(它告诉 PhantomJS“抓取”的页面是一个简单的 PHP 脚本,输出 $_SESSION 和 $_REQUEST 的 print_r())

最佳答案

如果您的脚本出现问题(例如在 page.render 中),将永远不会调用 phantom.exit()。这就是 phantomJs 似乎挂起的原因。

也许 page.render 有问题,但我不这么认为。最常见的挂起原因是未处理的异常。

我会建议你 4 件事来调查这个问题:

  • 添加处理程序到phantom.onError和/或 page.onError
  • 将您的代码封装在 try/catch block 中(例如用于 page.render)
  • 页面加载后,不会对回调状态进行测试。最好检查一下状态
  • 似乎在调用 page.render 时卡住。您是否尝试过在当前目录中使用更简单的文件名?也许卡住是因为安全或无效文件名(无效字符?)

希望对你有帮助

关于javascript - 从 CLI 或 Web 调用时 PhantomJS 挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16657744/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com