在本地使用 firebase 托管时使用 firebase 函数
Use of firebase functions when using firebase hosting locally
我目前有我的项目设置,其中一些后端功能使用了 firebase 函数。
我希望在使用网站时输入 firebase serve
时能够在本地测试这些功能,而不是使用邮递员查询功能,例如。
有什么办法可以做到这一点吗?
我试过只输入 firebase serve
但这给了我部署到 firebase 的功能,而不是我在本地更改的功能。
非常感谢您。
我发现你使用
firebase.functions().useFunctionsEmulator('http://localhost:5001');
使用本地托管的功能。
我目前有我的项目设置,其中一些后端功能使用了 firebase 函数。
我希望在使用网站时输入 firebase serve
时能够在本地测试这些功能,而不是使用邮递员查询功能,例如。
有什么办法可以做到这一点吗?
我试过只输入 firebase serve
但这给了我部署到 firebase 的功能,而不是我在本地更改的功能。
非常感谢您。
我发现你使用
firebase.functions().useFunctionsEmulator('http://localhost:5001');
使用本地托管的功能。