我想在Nancy Module中处理以下Get请求。
http://localhost:9988/myapp/home/admin
其中/admin
是可选参数值。
为此我已经定义了如下路线。
Get["/myapp/home/{role?}"] = parameters =>
{
Console.WriteLine("Optional....");
string role = parameters.role;
Console.WriteLine("region-->" + role);
return Response.AsRedirect(ADMIN_URL);
};
这有什么不对。此溃败无法处理以下网址。
http://localhost:9988/myapp/home/user
http://localhost:9988/myapp/home
在尝试上面的网址时,它会给我 404 错误。