js如何调用api接口数据,javascript调用api接口
在JavaScript中调用API接口通常使用XMLHttpRequest
或fetch
API。以下是使用fetch
的示例代码:
// 定义API的URL
const apiUrl = 'https://api.example.com/data';
// 使用fetch调用API接口
fetch(apiUrl)
.then(response => {
if (response.ok) {
return response.json(); // 将响应数据转换为JSON
}
throw new Error('Network response was not ok.');
})
.then(data => {
console.log('API Response:', data); // 处理API返回的数据
})
.catch(error => {
console.error('Error fetching API:', error); // 处理错误
});
确保API的URL是正确的,并且服务器端配置了CORS以允许跨域请求(如果需要)。如果API需要认证,你可能需要在请求中包含认证信息,如API密钥或令牌。
评论已关闭