我收到错误
否' Access-Control-Allow-Origin' 标头出现在请求的资源上。来源' https://MY-Firebase-APP.Firebaseapp.com'因此,不允许访问。
从我的Firebase存储中访问json文件时。以下是存储规则 -
service firebase.storage {
service firebase.storage {
match /b/paystumped.appspot.com/o {
match /{allPaths=**} {
allow read, write: if true;
}
}
}
该应用也由Firebase托管。这是我在运行firebase deploy'
时使用的firebase.json{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"headers": [
{
"source": "**/*",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "*"
}
]
},
{
"source": "**/*.@(jpg|jpeg|gif|png)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=7200"
}
]
},
{
"source": "404.html",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=300"
}
]
}
],
"cleanUrls": true,
"trailingSlash": false
} }
我确信有一些简单的CORS设置可以使这项工作。
答案 0 :(得分:2)
在阅读完CORS并了解其如何运作后,我在这里找到了理想的答案。 https://stackoverflow.com/a/37765371/4360863
firebase存储策略由google提供的实用程序配置。