我如何用查询参数重定向



我的问题:https://github.com/hapijs/hapi/issues/4307

我想知道是否有人在hapijs中遇到过这个,我不能在url

中重定向查询参数
server.route({
path: '/test',
method: 'GET',
handler: async (req, h) => {
return h.redirect('http://localhost:5000/login/callback?token=a');
},
})

我设法解决了这个问题,因为我有一个单独的文件,我正在导入我的登录路由,不知道为什么可能只是一些奇怪的

相关内容

  • 没有找到相关文章

最新更新