这可能是一个虚拟问题,但我找不到明确的指示。我在MVC3 Web应用程序中有一个POCO类,其唯一目的是管理服务器中某些文件的备份。通常,它会创建一个备份并将文件名返回给控制器,控制器会发送一封电子邮件,其中包含用于下载它的URL。这工作正常,但我无法构建要发送的绝对URL。无论我使用哪种功能,我总是得到一个相对的URL,比如 /Backup/TheFile.zip ,而不是像 http://www.somesite.com/Backup/TheFile.zip 的。我试过了:
VirtualPathUtility.ToAbsolute("~/Backup/SomeFile.zip");
HttpRuntime.AppDomainAppVirtualPath + "/Backup/SomeFile.zip";
Url.Content("~/Backup/SomeFile.zip");
但它们都会返回类似 /Backup/SomeFile.zip 的内容。有什么想法吗?
答案 0 :(得分:106)
您可以通过以下方式完成此操作:
var urlBuilder =
new System.UriBuilder(Request.Url.AbsoluteUri)
{
Path = Url.Action("Action", "Controller"),
Query = null,
};
Uri uri = urlBuilder.Uri;
string url = urlBuilder.ToString();
// or urlBuilder.Uri.ToString()
此示例中的Url.Action()
代替Url.Content()
,您也可以使用Controller
或任何路由方法,或者只是传递路径。
但如果网址确实转到Action
var contactUsUriString =
Url.Action("Contact-Us", "About",
routeValues: null /* specify if needed */,
protocol: Request.Url.Scheme /* This is the trick */);
,则会有更紧凑的方式:
protocol
这里的技巧是,一旦在调用任何路由方法时指定{{1}} / scheme,就会得到一个绝对URL。 我尽可能推荐这个,但在第一个例子中你也有更通用的方法,以备不时之需。
我在这里详细介绍了这篇文章:
http://gurustop.net/blog/2012/03/23/writing-absolute-urls-to-other-actions-in-asp-net-mvc/
答案 1 :(得分:35)
在控制器内:
var path = VirtualPathUtility.ToAbsolute(pathFromPoco);
var url = new Uri(Request.Url, path).AbsoluteUri
答案 2 :(得分:17)
这对我有用:
using System;
using System.Web;
using System.Web.Mvc;
public static class UrlExtensions
{
public static string Content(this UrlHelper urlHelper, string contentPath, bool toAbsolute = false)
{
var path = urlHelper.Content(contentPath);
var url = new Uri(HttpContext.Current.Request.Url, path);
return toAbsolute ? url.AbsoluteUri : path;
}
}
cshtml中的用法:
@Url.Content("~/Scripts/flot/jquery.flot.menuBar.js", true)
答案 3 :(得分:4)
如果host
或protocol
参数非空,则MVC 4中的内置帮助程序会创建绝对URL。请参阅this answer here,并在示例中使用示例扩展方法。
答案 4 :(得分:1)
In ASP.Net Core 2.0 (MVC) this works to create an absolute url to an action.
var url = Url.Action("About", "Home", new { /*Route values here*/ }, Request.Scheme);
答案 5 :(得分:0)
我为此编写了一个帮助类,对于MVC 5 ...它非常灵活,如果你不在控制器内部时需要这个功能,它特别有用。您应该能够将其直接放入项目中并继续。
正如Meligy指出的那样,关键是要包括协议。在这里,我将其硬编码为http,因此如果您想使用可能需要变得更灵活的SSL。
public class AbsoluteUrlHelper
{
/// <summary>
/// Creates an absolute "fully qualified" url from an action, and assumes the current controller.
/// </summary>
/// <returns></returns>
public static string GetAbsoluteUrl(string action, object routeValues = null)
{
var urlHelper = new UrlHelper(HttpContext.Current.Request.RequestContext);
var values = urlHelper.RequestContext.RouteData.Values;
var controller = values["controller"].ToString();
return GetAbsoluteUrl(action, controller, urlHelper, routeValues);
}
/// <summary>
/// Creates an absolute "fully qualified" url from an action and controller.
/// </summary>
public static string GetAbsoluteUrl(string action, string controller, object routeValues = null)
{
var urlHelper = new UrlHelper(HttpContext.Current.Request.RequestContext);
return GetAbsoluteUrl(action, controller, urlHelper, routeValues);
}
/// <summary>
/// Creates an absolute "fully qualified" url from an action and controller.
/// </summary>
public static string GetAbsoluteUrl(string action, string controller, UrlHelper urlHelper, object routeValues = null)
{
var uri = urlHelper.Action(action, controller, routeValues, "http");
return uri;
}
}
答案 6 :(得分:-4)
您有几个选择: