{ return -6ren">
gpt4 book ai didi

Nancy 重定向到当前模块下的路由

转载 作者:行者123 更新时间:2023-12-04 17:09:39 25 4
gpt4 key购买 nike

我需要重定向到当前模块下的路径:

modulePath = "/test";  
Get["/there"] = ...
Get["/here"] = routeParams => { return ????????????("/there"); }

我希望“/test/here”重定向到“/test/there”

最佳答案

您可以使用命名路由和 Nancy.Linker。见 https://github.com/horsdal/Nancy.Linker

即安装Nancy.Linker来自 NuGet,依赖 IResourceLinker并将代码更改为:

public class YourModule
{
public YourModule(IResourceLinker linker)
{
Get["theRoute", "/there"] = ...
Get["/here"] = Response.AsRedirect(linker.BuildAbsoluteUri(this.Context, "theRoute");
}
{

关于Nancy 重定向到当前模块下的路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24631922/

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