我需要在西里尔字母中抓取文字 但是我得到了����������������������而不是“Четыретысячичетыреста” 我使用这段代码
var data = {
Name:{
selector:maindir + "h1.moviename-big",
// convert:function(x){
// return x.toString('utf-8');
// }
}
}
function callback(error, response, body) {
if (!error && response.statusCode == 200) {
page = scrapeIt.scrapeHTML(body,data);
inf.List.push(page);
jsonfile.writeFile('List.json', inf, { spaces: 2}, function (err) {
console.error(err || 'success Write in Json')
});
}
}