在network那里看到json已经成功获取了,但是在控制台打印返回的数据却是为空。代码如下: <script> var xhr=window.XMLHttpRequest ? new XMLHttpRequest() : ActiveXObject('Microsoft.XMLHTTP'); xhr.onreadystatechange=function(){ if(xhr.readyState===4&&xhr.status===200){ console.log(xhr.reponseText) var placeMap=JSON.stringify(xhr.reponseText); } } xhr.open('GET','placesMap.json',true); xhr.send(); </script>
添加回答
举报
0/150
提交
取消