0

我在从网站获取后尝试存储 cookie。但是,当我创建一个全局变量并尝试将其存储在它返回为未定义的变量中,或者当我尝试创建一个带有 cookie 的文件时,它返回未定义为好吧,但我可以用 console.log 打印它。

我的代码:

var cookies;

phantom.create(['--ignore-ssl-errors=yes', '--load-images=no', '--ssl-
protocol=any']).then(function(ph) {
ph.createPage().then(function(page) {

page.property("onConsoleMessage", function(message) {
   console.log(message); 
});

page.property('onResourceReceived', function(response) {
        console.log(phantom.cookies); //Show the page cookies
        cookies = phantom.cookies;
       fs.write(CookieJar, JSON.stringify(phantom.cookies), "w"); //its not creating a file
}).then(function() {
      console.log('Cookies');
      console.log(phantom.cookies); //Equals to undefined
      console.log(cookies); //Equals to undefined
});;

page.open('https://stackoverflow.com').then(function(status) {
  if(status == 'success') {
     console.log('success');
  }  
});

});
});

如何将这些 cookie 存储在文件中并获取它?

4

1 回答 1

0

您可以查看测试以了解可能的用例。这是一个例子

await page.addCookie({
  name: 'Valid-Cookie-Name',
  value: 'Valid-Cookie-Value',
  domain: 'localhost',
  path: '/foo',
  httponly: true,
  secure: false,
  expires: new Date().getTime() + (1000 * 60 * 60),
});
于 2018-01-03T20:14:49.090 回答