【phantomjs系列】Phantomjs Api介绍

声明:本文非原创,加入了自己的一些认识,感谢网友的无私分享:https://thief.one/2017/03/13/Phantomjs-Api%E4%BB%8B%E7%BB%8D/

  之前几篇文章介绍了Selenium+Phantomjs用法,也探讨过性能优化问题。然而利用selenium或者说python去运行phantomjs本质上并不是高效的方法,再者selenium对于phantomjs的封装并不是特别完善(长久没有更新过),因此很有必要研究下原生态的phantomjs。于是我参考官网介绍,学习总结成文,在此记录分享。

  phantomjs全面支持web而不需要浏览器,又称为无头浏览器,它是一个基于webkit的服务端javascript API,可以用于页面自动化,网络监测,网页截图,爬虫抓取等。phantomjs有很多api接口,接口语法用的就是js的语法,phantom提供了类,实例化以后可以调用对象的方法,通过回调函数可以实现自己想要的功能,其APi主要有web服务端Api、webPage APi、System APi等,这里主要介绍几种常用的api的用法。
  
  *

1.phantomjs-Command Line Interface


描述:phantomjs命令行用法以及参数设置
首先我们看下如何调用phantomjs运行js脚本,cmd进入命令窗口


phantomjs [options] somescript.js [arg1 [arg2 [...]]]

可选参数:(只列举常用的)

–disk-cache=[true|false] 缓存设置
–ignore-ssl-errors=[true|false] 忽略ssl错误
–load-images=[true|false] 加载图片
–proxy=address:port 设置代理

有很多参数,不一一列举,详细参考:phantomjs-Command Line Interface

2.phantomjs-system module

描述:phantomjs系统操作APi
文档地址:http://phantomjs.org/api/system/
作用:用于system系统操作

args(获取程序输入参数)

代码(test.js)

var system = require('system');
var args = system.args;
if (args.length === 1) {
  console.log('Try to pass some arguments when invoking this script!');
} else {
  args.forEach(function(arg, i) {
    console.log(i + ': ' + arg);
  });
}

运行:
phantomjs test.js hello
结果:
0 test.js
1 hello
功能:接受控制台输入参数。

env(系统环境变量)
代码(test.js):

var system = require('system');
var env = system.env;
Object.keys(env).forEach(function(key) {
  console.log(key + '=' + env[key]);
});

运行:phantomjs test.js
功能:列出系统环境变量

os(平台类型)
代码(test.js):

var system = require('system');
var os = system.os;
console.log(os.architecture);  // '32bit'
console.log(os.name);  // 'windows'
console.log(os.version);  // '7'

运行:phantomjs test.js
结果:
32bit
windows
7
功能:输出运行平台类型

pid (进程id)
代码(test.js):

var system = require('system');
var pid = system.pid;
console.log(pid);

输出进程pid

platgform(平台信息)
代码(test.js):

var system = require('system');
console.log(system.platform); // 'phantomjs'

运行结果:phantomjs

3.Phantomjs-web server module

描述:phantomjs web server module APi
文档地址:http://phantomjs.org/api/webserver/method/listen.html
作用:作为webserver服务端,提供http服务。
代码(test.js):

var webserver = require('webserver');
var server = webserver.create();
var service = server.listen(8080, function(request, response) {
  response.statusCode = 200;
  response.setHeader("Cookie","1adaa2121");
  response.setEncoding("binary");
  response.write('<html><body>Hello!</body></html>');
  console.log(request.method);
  console.log(request.url);
  console.log(request.httpVersion);
  console.log(request.headers);
  console.log(request.post);
  console.log(request.postRaw);
  response.close();
});

运行:phantomjs test.js
访问:http://localhost:8080

如果要指定ip与端口,则8080可以这样写:’127.0.0.1:9999’。

其中有2个参数,request与response。

request参数方法:

request.method
request.url
request.httpVersion
request.headers
request.post
request.postRaw

用来获取请求内容。

response参数方法:

response.headers
response.setheader(name,value)
response.header(name)
response.statusCode()
response.setEncoding(“binary”)
response.write(html_data)
response.writeHead(statusCode,headers)
reponse.close()
reponse.closeGracefully()

4.Phantomjs-web page module

描述:phantomjs web page module APi
文档地址:Phantomjs-web page module
作用:用来发送http请求,获取网络资源,或者页面操作。

实例化api类:

var webPage = require('webpage');
var page = webPage.create();

page方法:

page.content //源码
page.title //标题
page.cookie //cookie
page.plainText //网页内容(去除html)
page.setting //参数设置
page.url //当前url

clipRect :剪切页面

page.clipRect = {
    top: 14,
    left: 3,
    width: 400,
    height: 300
};

content获取网页源码:

var webPage = require('webpage');
var page = webPage.create();
page.open('http://thief.one', function (status) {
  var content = page.content;
  console.log('Content: ' + content);
  phantom.exit();
});

cookie获取页面cookie:

page.open('http://thief.one', function (status) {
  var cookies = page.cookies;
  console.log('Listing cookies:');
  for(var i in cookies) {
    console.log(cookies[i].name + '=' + cookies[i].value);
  }
  phantom.exit();
});

设置customHeaders内容:

page.customHeaders = {
  "X-Test": "foo",
  "DNT": "1"
};

plainText获取网页内容(去除html只留内容):

page.open('http://thief.one', function (status) {
  console.log('Stripped down page text:\n' + page.plainText);
  phantom.exit();
});

setting 请求头设置:

var webPage = require('webpage').create();
page.settings.userAgent = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36';

zoomFactor缩略图创建:

var webPage = require('webpage');
var page = webPage.create();
page.zoomFactor = 0.25;
page.render('capture.png');

addcookie添加cookie:

phantom.addCookie({
  'name'     : 'Valid-Cookie-Name',   /* required property */
  'value'    : 'Valid-Cookie-Value',  /* required property */
  'domain'   : 'localhost',
  'path'     : '/foo',                /* required property */
  'httponly' : true,
  'secure'   : false,
  'expires'  : (new Date()).getTime() + (1000 * 60 * 60)   /* <-- expires in 1 hour */
});

上传文件:

var webPage = require('webpage');
var page = webPage.create();
page.uploadFile('input[name=image]', '/path/to/some/photo.jpg');

render页面截图:

page.viewportSize = { width: 1920, height: 1080 };
page.open("http://www.google.com", function start(status) {
  page.render('google_home.jpeg', {format: 'jpeg', quality: '100'});
  phantom.exit();
});

更多例子请参考:http://phantomjs.org/examples/index.html

了解更多phantomjs:
【phantomjs系列】selenium+phantomjs爬过的那些坑:https://thief.one/2017/03/01/Phantomjs%E7%88%AC%E8%BF%87%E7%9A%84%E9%82%A3%E4%BA%9B%E5%9D%91/
【phantomjs系列】selenium+phantomjs性能优化:https://thief.one/2017/03/01/Phantomjs%E6%80%A7%E8%83%BD%E4%BC%98%E5%8C%96/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值