gpt4 book ai didi

node.js - Firebase函数从URL获取参数

转载 作者:太空宇宙 更新时间:2023-11-04 00:10:10 24 4
gpt4 key购买 nike

我想要一个自定义网址,例如 https://<my-project-id>.firebaseapp.com/parameter这样我就有一个接受值“参数”的函数。

这是我对 firebase.json 重写的内容:

"rewrites": [
{
"source": "/:bar*", "function": "foo"
},
{
"source": "**",
"destination": "/index.html"
}
]

然后对于functions/index.js,这是我的“foo”函数:

exports.foo = functions.https.onRequest((req, res) => {
console.log('bar = '+req.query.bar);
console.info(req.query.bar);
res.status(200).send(`<!doctype html>
<head>
<title>Test</title>
</head>
<body>
Bar = ${req.query.bar}
</body>
</html>`);
});

什么有效,但不是我想要的

如果我将 firebase.json 更改为以下内容:

"rewrites": [
{
"source": "/**", "function": "foo"
},
{
"source": "**",
"destination": "/index.html"
}
]

并像这样编写 url:

https://<my-project-id>.firebaseapp.com/anything?bar=test

然后它正确获取bar参数。但是,我需要能够缩短网址。

最佳答案

尝试 console.log(req.url); 获取 url。然后你只需提取 /

之后的最后一部分

关于node.js - Firebase函数从URL获取参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50156802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com