简单的南希路线 return 404
Simple Nancy Routes return 404
我是 Nancy 的新手,正在学习一些简单的教程。
我正在尝试在 Nancy 中创建一条路线,只是为了打印出 hello 但 returns 404 资源可能已被删除...
这是我的代码的样子
public HelloModule (){
Get["/hello"] = _ => "Hello World!"
}
}
问题:
你得到 404 的原因是什么:
http://<server>:port/hello
或 http://<server:port>/
?
如果是后者,说明你还没有定义那条路由。
更多信息会有所帮助。
我可以按照这个 link https://auth0.com/blog/meet-nancy-a-lightweight-web-framework-for-dot-net/ 解决这个问题
并且 运行 Visual Studio 作为管理员
我是 Nancy 的新手,正在学习一些简单的教程。 我正在尝试在 Nancy 中创建一条路线,只是为了打印出 hello 但 returns 404 资源可能已被删除... 这是我的代码的样子
public HelloModule (){
Get["/hello"] = _ => "Hello World!"
}
}
问题:
你得到 404 的原因是什么:
http://<server>:port/hello
或 http://<server:port>/
?
如果是后者,说明你还没有定义那条路由。
更多信息会有所帮助。
我可以按照这个 link https://auth0.com/blog/meet-nancy-a-lightweight-web-framework-for-dot-net/ 解决这个问题 并且 运行 Visual Studio 作为管理员