当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PhantomJS addCookie()用法及代码示例



addCookie 方法将 cookie 添加到指定的页面。要添加的 cookie,域名必须与页面匹配,否则,cookie 将被忽略。如果添加成功,则返回 true,否则返回 false。这Name, ValueDomain是 addcookie 方法中的必填字段。

现在,我们将向页面添加 cookiea.html.因此,wpage.cookies 将提供新添加的 cookie 和页面 a.html 上现有的 cookie。

用法

其语法如下:

phantom.addCookie({ 
   'name'    :'cookie1',     /* mandatory property */ 
   'value'   :'1234',        /* mandatory property */ 
   'domain'  :'localhost',   /* mandatory property */ 
   'path'    :'/', 
   'httponly':true, 
   'secure'  :false, 
   'expires' :(new Date()).getTime() + (5000 * 60 * 60) 
});

示例

让我们看一个例子addCookie ()方法。

var wpage = require('webpage').create();  
phantom.addCookie ({ 
   'name'    :'cookie1',      /* mandatory property */ 
   'value'   :'1234',         /* mandatory property */ 
   'domain'  :'localhost',    /* mandatory property */ 
   'path'    :'/', 
   'httponly':true, 
   'secure'  :false, 
   'expires' :(new Date()).getTime() + (5000 * 60 * 60) 
});  
wpage.open ('http://localhost/tasks/a.html', function() { 
   console.log(JSON.stringify(wpage.cookies));
   phantom.exit(); 
});

上述程序生成以下内容output

[{"domain":".localhost","expires":"Sun, 07 May 2017 01:13:45 GMT","expiry":1494 
99825,"httponly":true,"name":"cookie1","path":"/","secure":false,"value":"1234" 
,{"domain":"localhost","expires":"Fri, 22 Dec 2017 12:00:00 GMT","expiry":15139 
4000,"httponly":false,"name":"username","path":"/tasks/","secure":false,"value" 
"Roy"}] 

相关用法


注:本文由纯净天空筛选整理自 PhantomJS - addCookie()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。