1、客户端
使用Nohttp库发起Http请求
2、服务端
使用Nancy.Hosting.Self库处理Http请求
2.1、路由
把URL与处理器对应起来,或者说寻找为URL的处理器。
得到参数,例如请求是:http://localhost:1234/user/1?name=deng
,则获取参数代码如下:
Get("/user/{id}", (parameters) =>
{
var name = Request.Query.name;
var path = Request.Url.Path;
return $"Hello 你访问了{path},参数是name={name}";
});