web2image control phantomjs flow

This commit is contained in:
fbsanchez 2019-09-18 16:58:02 +02:00
parent 4adf584827
commit 42c0fa9a5a
1 changed files with 7 additions and 1 deletions

View File

@ -61,6 +61,7 @@ page.onConsoleMessage = function(msg) {
page.onError = function(msg) {
console.log(msg);
page.close();
phantom.exit();
};
page.onCallback = function(st) {
@ -74,4 +75,9 @@ page.onCallback = function(st) {
phantom.exit();
};
page.open(url, "POST", post_data, function(status) {});
page.open(url, "POST", post_data, function(status) {
if (status == "fail") {
console.out("Failed to generate chart.");
phantom.exit();
}
});