fetch(url).then((response) => {
return response.blob();
}).then(blob => {
return URL.createObjectURL(blob);
});
我url
实际上fetch()
是一个不同域的图像url,即阿里云的OSS_URL。我怎样才能完全访问它。
fetch(url).then((response) => {
return response.blob();
}).then(blob => {
return URL.createObjectURL(blob);
});
我url
实际上fetch()
是一个不同域的图像url,即阿里云的OSS_URL。我怎样才能完全访问它。
你应该在你的阿里云上配置 CORS。像这里一样检查他们的文档
您在此代码段中获取的 URLfetch(url)
阻止了您的请求,因为它url
不接受对其资源的请求,除非它来自受信任的来源。
您需要将 CORS 策略添加到您的服务器,这将告诉服务器您请求的 URL 是安全的。
Your url (localhost) -> request to server -> Server declines (localhost)
这是创建 CORS 错误,因为您请求的服务器不允许在不受信任的站点之间共享资源。