跨域资源共享(CORS)是一种安全机制,允许受限资源(如字体、JavaScript等)从另一个域请求。当服务器配置了正确的CORS头时,可以允许跨域请求。
示例:
fetch('https://example.com/data', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));