在asp.net mvc视图中是否有任何简单(内置)方式来获取内容文件夹中文件的绝对路径?
目前我正在使用
@Url.Content("~/Content/images/logo.png")
但返回的路径不是绝对的。
我知道有可能为这种情况建立自己的助手,但我想知道是否有更简单的方法......
答案 0 :(得分:32)
这对我有用:
帮手:
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)
// example output:
// http://example.com/directory/Scripts/flot/jquery.flot.menuBar.js
答案 1 :(得分:14)
这将生成图像(或文件)的绝对URL
Request.Url.Scheme + "://" + Request.Url.Authority + Url.Content("~/Content/images/logo.png")
这适用于Asp.net Core
Context.Request.Scheme + "://" + Context.Request.Host + Url.Content("~/images/logo.png")
答案 2 :(得分:5)
Url.Content会返回绝对路径。你想要的是域(和端口)。您可以使用以下方式获取当前域:
Request.Url.Authority
然后将此字符串与图像的绝对路径字符串组合在一起。 它将返回域名,如果您在不同的端口,还将包含端口号。
答案 3 :(得分:2)
new Uri(Request.Url, Url.Content("~/Content/images/logo.png"))
这会调用Uri的.ToString()。 您也可以将Uri放入变量并调用.AbsoluteUri。
答案 4 :(得分:1)
HttpContext.Current.Server.MapPath("~/Content/images/logo.png");