提问人:Code Force 提问时间:5/10/2021 更新时间:5/10/2021 访问量:198
从一个 BFF 到另一个 BFF 的调用函数
Call function from one BFF to another
问:
我是 node 和 epxress 的新手。
假设我有两个 BFF - BFF A 和 BFF B。 在 Bff B 中,我有一个函数 someFunc
export const someFunc = async (req: Request, res: Response): Promise<void> => {
const id = req?.query?.Id;
await renewSession(String(id));
const { ID_TOKEN_KEY } = buildCacheKeys(String(id));
const token = await CacheService.get(ID_TOKEN_KEY);
const logged = !!token;
res.send({ logged, token });
};
我想在 BFF B 中从 BFF A 调用这个函数 someFunc。我该如何实现?
这两个 bffs 都使用 node js 和 express,并且都通过 ngrok 隧道相互连接。
答: 暂无答案
评论