美文网首页
Node GBK中文乱码问题

Node GBK中文乱码问题

作者: 2359634711 | 来源:发表于2019-05-30 13:04 被阅读0次

    不应当使用request库
    应当使用buff原生http
    参考文章

    http.get("http://news.nepu.edu.cn/news/155608357779010888.html", function(res) {
        res.pipe(iconv.decodeStream('GBK')).collect(function(err, decodedBody) {
            console.log(decodedBody);
        });
    });
    

    相关文章

      网友评论

          本文标题:Node GBK中文乱码问题

          本文链接:https://www.haomeiwen.com/subject/qhwmtctx.html