比如在谷歌打开贴吧网页后,在控制台输入 fetch('http://tieba.baidu.com').then(res=>res.text()).then(html=>console.log(html)),因为贴吧用的是gbk编码,fetch出来的结果乱码了,怎么解决?谢谢!!!
闭关修行中......
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') })
闭关修行中......