比如在谷歌打开贴吧网页后,在控制台输入 fetch('http://tieba.baidu.com').then(res=>res.text()).then(html=>console.log(html)),
因为贴吧用的是gbk编码,fetch出来的结果乱码了,怎么解决?谢谢!!!
大家讲道理2017-04-10 16:55:18
fetch('http://tieba.baidu.com')
.then(res=> res.blob())
.then(blob => {
var reader = new FileReader();
reader.onload = function(e) {
var text = reader.result;
console.log(text)
}
reader.readAsText(blob, 'GBK')
})