Atitit ?Uncaught (in promise) SyntaxError Unexpected token < in JSON at position 0
?Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0
原因json解析错误,包含特定中文引起的。。Json编码utf8已经是。
解决手动转换为json对象。奇怪的是其他的有中文的没问题
fetch(url) .then(res=> res.blob())
.then(blob => {
var reader = new FileReader();
reader.onload = function(e) {