page.set ('content') funktioniert nicht mit dynamischen Inhalten in Phantomjs
Ich habe versucht, Phantombilder für die Bildschirmaufnahme meiner Seite zu verwendenKnoten-Phantom Brücke. Folgendes versuche ich:
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();
});
});
});
});
Das funktioniert gut, aber wenn ich versuche, Inhalte zu setzen, die Javascript enthalten, funktioniert das nicht. Bitte helfen Sie mir, warum funktioniert es nicht?
BEARBEITEN: Das geht nicht:
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);
});
});