<html>
<head>
<title>"api call"</title>
</head>
<body>
<div id="demo">
<script>
function list() {
var xhttp = new XMLHttpRequest();
xhttp.open("GET","192.168.0.101:8000/students/",true);
xhttp.setRequestHeader("Content-type", "application/json");
xhttp.setRequestHeader("Authorization", "Token ad4140b1caa4f98160bdc979a71a7215ae5972fe");
xhttp.send();
var1 response = JSON.parse(xhttp.responseText);
document.write(var1);
}
</script>
<button type="button" onclick="list()">click to get the list</button>
</div>
</body>
</html>
にして正常に動作します) ブラウザで使用される場合は、URLが正常に動作して郵便配達 this is the screenshot of postman request and response
バックエンドはDjangoの
である、これは私がコンソール
で取得エラーですvar1 response = JSON.parse(xhttp.responseText);
エラー:キャッチされないでSyntaxError:予期しない識別子
するには、どのようなエラーが発生するのですか? –
@ Alexandru-IonutMihai私は編集しました、最後に見ることができます –
私のanwerを見てください。 –