在 Cloud Functions for Firebase 中启用 CORS
开发 Cloud Functions for Firebase 时,了解 CORS(跨域资源共享)非常重要启用跨域请求。错误“No 'Access-Control-Allow-Origin'”表示该函数未配置为接受 CORS 请求。
Cloud Functions 中的 CORS 中间件
The Firebase 文档建议在函数中使用 CORS 中间件,但正确导入它至关重要。推荐的方法是使用以下导入:
const cors = require('cors')({ origin: true });
云函数的函数结构
函数的结构应类似于以下内容:
exports.fn = functions.https.onRequest((req, res) => { cors(req, res, () => { // Your function body here }); });
额外注意事项:
通过合并这些更改,您应该能够启用 CORS在您的 Cloud Functions for Firebase 中并解决“No 'Access-Control-Allow-Origin'”错误。
以上是如何在 Firebase Cloud Functions 中启用 CORS?的详细内容。更多信息请关注PHP中文网其他相关文章!