myplayaaaaa
Version:
wwww
19 lines (18 loc) • 411 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="js/axios.js"></script>
<script>
axios.get("https://randomuser.me/api")//primise对象
.then(res=>{//success:function(data){}
//res服务器响应对象
//res.data 响应json
console.log("res.data",res.data);
})
</script>
</head>
<body>
</body>
</html>