PhantomJS open()
open方法用于打开一个网页。open方法接受一个页面URL和一个回调函数作为参数,当页面加载完成时会调用该回调函数。回调函数是可选的,可以根据需要使用。回调函数包含一个状态参数,用于定义页面加载的成功或失败。
语法
其语法如下所示:
var wpage = require('webpage').create();
wpage.open(url, function(status) {
//status is success or failure
});
使用GET方法打开()
var wpage = require('webpage').create();
wpage.open('http://www.google.com/', function(status) {
console.log(status);
phantom.exit();
});
上面的程序生成以下 输出 。
Success
使用POST方法的open()
var wpage = require('webpage').create();
var postdata = "username = roy";
wpage.open('http://localhost/tasks/a.php', 'POST',postdata, function(status) {
console.log(status);
console.log(wpage.content);
phantom.exit();
});
a.php
<?php
print_r($_POST);
?>
上述程序生成如下输出。
success
<html><head></head><body>Array
(
[username] => roy
)
</body></html>