Phantomjs implementation Loop

Source: Internet
Author: User
// RenderMultipleURLstofilevarRenderUrlsToFile, arrayOfUrls, system; systemrequire (& quot; system & quot;);/* Rendergivenurls @ paramarrayofURLstorender @ paramcallbackPerUr
// Render Multiple URLs to filevar RenderUrlsToFile, arrayOfUrls, system;system = require("system");/*Render given urls@param array of URLs to render@param callbackPerUrl Function called after finishing each URL, including the last URL@param callbackFinal Function called after finishing everything*/RenderUrlsToFile = function(urls, callbackPerUrl, callbackFinal) {    var getFilename, next, page, retrieve, urlIndex, webpage;    urlIndex = 0;    webpage = require("webpage");    page = null;    getFilename = function() {        return "rendermulti-" + urlIndex + ".png";    };    next = function(status, url, file) {        page.close();        callbackPerUrl(status, url, file);        return retrieve();    };    retrieve = function() {        var url;        if (urls.length > 0) {            url = urls.shift();            urlIndex++;            page = webpage.create();            page.viewportSize = {                width: 800,                height: 600            };            page.settings.userAgent = "Phantom.js bot";            return page.open("http://" + url, function(status) {                var file;                file = getFilename();                if (status === "success") {                    return window.setTimeout((function() {                        page.render(file);                        return next(status, url, file);                    }), 200);                } else {                    return next(status, url, file);                }            });        } else {            return callbackFinal();        }    };    return retrieve();};arrayOfUrls = null;if (system.args.length > 1) {    arrayOfUrls = Array.prototype.slice.call(system.args, 1);} else {    console.log("Usage: phantomjs render_multi_url.js [domain.name1, domain.name2, ...]");    arrayOfUrls = ["www.google.com", "www.bbc.co.uk", "www.phantomjs.org"];}RenderUrlsToFile(arrayOfUrls, (function(status, url, file) {    if (status !== "success") {        return console.log("Unable to render '" + url + "'");    } else {        return console.log("Rendered '" + url + "' at '" + file + "'");    }}), function() {    return phantom.exit();});

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.