javascript 从API(x-api-key)检索用户数据[已关闭]

vyu0f0g1  于 2023-09-29  发布在  Java
关注(0)|答案(1)|浏览(63)

已关闭此问题为not reproducible or was caused by typos。它目前不接受回答。

此问题是由打印错误或无法再重现的问题引起的。虽然类似的问题可能是on-topic在这里,这一个是解决的方式不太可能帮助未来的读者。
三年前就关门了。
Improve this question
我是初学者JavaScript程序员,在这里尝试使用fetch检索用户信息,问题是,是否有任何简单的方法来搜索特定的人,例如:月桂Gates用户ID:英语不是我的母语,所以对错误感到抱歉。下面是我代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Retrieve</title>
    <meta name="viewport" content="width=device-width">
    <style>
    </style>
</head>
<body>

    <script>
       fetch("https://*******.****-.com/",{
        method:"GET",
        headers:{
                 "Content-type": "application/json",
                 "X-API-Key": "o************************G" 
    }
})
    .then( function(vastaus) {
        if(vastaus.ok){
            return vastaus.json();
        }
    })
    .then( function(tiedot) {
        console.log(tiedot);
    })
    .catch( function(virhe) {
        console.log('ERROR: ', virhe.message);
    }); 
    </script>
	
</body>
</html>
s5a0g9ez

s5a0g9ez1#

聊天结束后,问题来自Content-Response和response,但没有console.log调用的某些属性

相关问题