使用PhantomJs抓取百度標題亂碼 結果: 解決方法: ...
使用PhantomJs抓取百度標題亂碼
var url="http://www.baidu.com" var page=require('webpage').create() page.open(url,function (status) { var title=page.evaluate(function () { return document.title; }) console.log('Page title is ',title) phantom.exit() })
結果:
解決方法:
phantomjs --output-encoding=gb2312 getHtmlTitle.js