asp.net webapi 中获取当前域名的方法
Request.RequestUri.AbsoluteUri
上述代码将获取接口的完成路径
例如:http://192.168.1.1:9001/testProject/api/User/Add
或者
HttpContext.Current.Request.Url.Host;
asp.net webapi 中获取当前域名的方法
Request.RequestUri.AbsoluteUri
上述代码将获取接口的完成路径
例如:http://192.168.1.1:9001/testProject/api/User/Add
或者
HttpContext.Current.Request.Url.Host;