2014-01-09 77 views

回答

3

JSON序列化的參數可以傳遞到page.evaluate。 下面是使用這種技術的一個非常基本的下面的例子:這解決了這對我

page.open('http://stackoverflow.com/', function(status) { 

    var title = page.evaluate(function(s) { 
    return document.querySelector(s).innerText; 
    }, 'title'); 

    console.log(title); 
    phantom.exit(); 

});