我正在尝试将从uri获得的响应解析为字符串,并将其显示在网页上。响应是字节流。以下是我目前的情况。它不起作用。调试器说“ReferenceError:result not defined”。如何将字节解析为字符串?非常感谢您的帮助!
var uri = "some uri to get text in byte stream"
var xhr = new XMLHttpRequest();
xhr.open("GET", uri,true);
xhr.onload= function(){
var result = xhr.responseText;//it doesn't display the text
}
xhr.send(null);
document.getElementById("show").innerHTML = result;//display result on a page