1 回答
TA贡献1719条经验 获得超6个赞
您在这里混合了后端和前端代码。另外,在前端,您还包含两个不同的 jQuery 版本。
我建议将前端代码更改为如下所示:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script>
$.ajax({
headers: { 'X-Auth-Token': 'my api token' },
url: 'https://api.football-data.org/v2/competitions',
dataType: 'json',
type: 'GET',
}).done(function(response) {
// do something with the response
console.log(response);
});
</script>
</body>
</html>
- 1 回答
- 0 关注
- 95 浏览
添加回答
举报