在asp.net mvc视图中是否有任何简单(内置)方式获取内容文件夹中文件的绝对路径?
在我正在使用的那一刻
@Url.Content("~/Content/images/logo.png")
但返回的路径不是绝对的.
我知道有可能为这种情况建立自己的帮手,但我想知道是否有更简单的方法…
解决方法
这对我有用:
助手:
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