1

我无法使用 nodejs 显示对浏览器的中文响应?

jsdom.env({ html: 'http://www.baidu.com',
    scripts: ['http://code.jquery.com/jquery-1.6.min.js']
}, function (err, window) {
    //Use jQuery just as in a regular HTML page
    var $ = window.jQuery;

    res.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
    res.end($('title').text());
});

结果不正确:�ٶ�һ�£������֪��

正确的结果应该是:百度一下,你就知道

4

1 回答 1

1

因为百度的网页编码是GBK的</p>

因为baidu.com的charset是GBK

于 2012-03-14T09:10:40.947 回答