page.set(“内容”),不与phantomjs动态内容工作(page.set('con

2019-09-01 07:47发布

我试图用phantomjs用于屏幕捕捉我的页面节点幻影桥梁。 下面是我尝试:

 var phantom = require('node-phantom');

 phantom.create(function (err, ph) {
            return ph.createPage(function (err, page) {
              return page.set('content', '<html><head></head><body><p>Hello</p></body></html>', function (err, status) {
                  return page.render('./content.png', function (err) {
                    ph.exit();
                  });
                });
            });
          });

这工作正常,但如果我尝试设置包含JavaScript内容,不工作。 请大家帮我,为什么它不工作?

编辑:这不工作:

var phantom = require('node-phantom');

phantom.create(function (err, ph) {
   return ph.createPage(function (err, page) {
      page.open("about:blank", function(err,status) {
         page.evaluate(function() {        
            document.write('<html><head></head><body><script src="http://code.jquery.com/jquery-1.9.1.min.js"></script><script>$(function(){document.write("Hello from jQuery")})</script></body>');
         });

         setTimeout(function () {
            return page.render('./content.png', function (err) {
                ph.exit();
             }); 
         }, 5000);   
    });         
  });

Answer 1:

JavaScript代码需要一些时间来执行。 尽量使设置页面内容和通话之间的延迟render



Answer 2:

我不知道为什么要设置内容不工作,这似乎是phantomjs API的限制。 你可以使用文件撰写。

var phantom = require('node-phantom');

phantom.create(function (err, ph) {
  return ph.createPage(function (err, page) {
    page.open("about:blank", function(err,status) {
      page.evaluate(function() {        
        document.write('<html><body><script>document.write("<h1>Hello From JS</h1>");</script><p>Hello from html</p></body></html>');
      });
      return page.render('./content.png', function (err) {
        ph.exit();
      });
    });
  });         
});


Answer 3:

如ariya提到的那样,需要的时间。 有可能一个“onLoadFinished”事件此库(没有用于节点LIB我使用)。 :你可以看到这个问题的GitHub的底部我的例子处理这种不任意等待时间https://github.com/amir20/phantomjs-node/issues/68

Document.prototype.captureScreenshot = function(next) {
console.log(">> Rendering screencap for " + this.id)
var self = this;
phantom.create(function(ph) {
    ph.createPage(function(page) {
        page.setContent(self.html);
        page.set("viewportSize", {
            width: 1920,
            height: 1080
        });
        page.set('onLoadFinished', function(success) {
            var outputFile = './screenshots/screenshot-' + self.id + '.png';
            page.render(outputFile);
            ph.exit();
            console.log(">> Render complete for " + self.id)
            if (next)
                next(outputFile);
        })
    });
});

}



文章来源: page.set('content') doesn't work with dynamic content in phantomjs