我有這樣的代碼:如何編碼/解碼NodeJS中的字符集編碼?
request({ url: 'http://www.myurl.com/' }, function(error, response, html) {
if (!error && response.statusCode == 200) {
console.log($('title', html).text());
}
});
但是,網站,即時通訊爬行可以有不同的字符集(UTF8,ISO-8859-1,等等。)如何讓它和編碼/解碼總是將HTML到正確的編碼(utf8)?
感謝和我的英語很抱歉;)
嗯,我知道我可以使用的選項'encoding'的請求,但這個問題我不知道該頁面的又字符集(我知道用頭或meta標籤) – William 2011-04-23 14:33:50