12

我刚刚在我的机器上下载并安装了 phantomjs。我将以下脚本复制并粘贴到名为 hello.js 的文件中:

var page = require('webpage').create();
var url = 'https://www.google.com'

page.onLoadStarted = function () {
    console.log('Start loading...');
};

page.onLoadFinished = function (status) {
    console.log('Loading finished.');
phantom.exit();
};

page.open(url);

我想将完整的 html 源代码(在本例中来自 google 页面)打印到文件或控制台。我该怎么做呢?

4

1 回答 1

52

花了一些时间阅读文档,之后应该很明显。

var page = require('webpage').create();
page.open('http://google.com', function () {
    console.log(page.content);
    phantom.exit();
});
于 2012-09-18T01:41:11.947 回答