asp.net-mvc – 获取文件内容的绝对路径

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 获取文件内容的绝对路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在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
原文链接:https://www.f2er.com/aspnet/250518.html

猜你在找的asp.Net相关文章