写作
@Url.Content("~/Something/Something.html")
在razor渲染
/AppFolder/Something/Something.html
有没有一种方法来渲染完整的URL像http://www.something.com/AppFolder/Something/Something.html
没有残暴的黑客?(例如将协议和域存储在AppConfig
中,并将字符串连接到它)
是否有像@Url.FullPath("~/asdf/asdf")
或类似的助手?
请参阅这篇博文。
基本上,你所需要做的就是包括协议参数,例如
Url.Action("About", "Home", null, "http")
@Url.RouteURL()并没有安静地回答这个问题。它确实适用于命名路由,但不适用于任意虚拟路径。下面是生成完整出站url的快速助手方法。您可以根据需要的控制程度为各种方案(http[s])创建重载。
public static class UrlHelperExtension
{
public static string ContentFullPath(this UrlHelper url,string virtualPath)
{
var result = string.Empty;
Uri requestUrl = url.RequestContext.HttpContext.Request.Url;
result = string.Format("{0}://{1}{2}",
requestUrl.Scheme,
requestUrl.Authority,
VirtualPathUtility.ToAbsolute(virtualPath));
return result;
}
}
对于任何需要在WebAPI 2.2和/或MVC5中构建url的人来说,这对我来说很有效:
// works in a controller
var requestUri = this.Request.RequestUri;
// just the http/s and the hostname; ymmv
string baseUrl = requestUri.Scheme + "://" + requestUri.Authority + "/";
// build your url for whatever purpose you need it for
string url = baseUrl + "SomeOtherController?id=" + <some_magic_value>;
您可以使用帮助器生成完整的url,包括协议。注意url.Action
中的第一个小写字母。
var url = new UrlHelper(System.Web.HttpContext.Current.Request.RequestContext);
var fullUrl = url.Action("YourAction", "YourController", new { id = something }, protocol: System.Web.HttpContext.Current.Request.Url.Scheme);
https://www.yourdomain.com/YourController/YourAction?id=something