Действие Изображение MVC3 Razor

119

Как лучше всего заменить ссылки изображениями с помощью Razor в MVC3. Я просто делаю это сейчас:

<a href="@Url.Action("Edit", new { id=MyId })"><img src="../../Content/Images/Image.bmp", alt="Edit" /></a> 

Есть ли способ лучше?

Дэви
источник
15
Не имеет прямого отношения, но я настоятельно рекомендую вам использовать файлы PNG или JPG (в зависимости от содержимого изображения) вместо файлов BMP. И, как предложил @jgauffin, также попробуйте использовать относительные пути приложения ( ~/Content). Путь ../../Contentне может быть действительным из разных маршрутов (например /, /Home, /Home/Index).
Лукас
Спасибо, Лукас. Я использую png, но совет по использованию URL.Content - это то, что я искал. проголосовать :)
Дэви

Ответы:

217

Вы можете создать метод расширения для HtmlHelper, чтобы упростить код в вашем файле CSHTML. Вы можете заменить свои теги таким методом:

// Sample usage in CSHTML
@Html.ActionImage("Edit", new { id = MyId }, "~/Content/Images/Image.bmp", "Edit")

Вот пример метода расширения для приведенного выше кода:

// Extension method
public static MvcHtmlString ActionImage(this HtmlHelper html, string action, object routeValues, string imagePath, string alt)
{
    var url = new UrlHelper(html.ViewContext.RequestContext);

    // build the <img> tag
    var imgBuilder = new TagBuilder("img");
    imgBuilder.MergeAttribute("src", url.Content(imagePath));
    imgBuilder.MergeAttribute("alt", alt);
    string imgHtml = imgBuilder.ToString(TagRenderMode.SelfClosing);

    // build the <a> tag
    var anchorBuilder = new TagBuilder("a");
    anchorBuilder.MergeAttribute("href", url.Action(action, routeValues));
    anchorBuilder.InnerHtml = imgHtml; // include the <img> tag inside
    string anchorHtml = anchorBuilder.ToString(TagRenderMode.Normal);

    return MvcHtmlString.Create(anchorHtml);
}
Лукас
источник
5
Отличный сниппет. Любой, кто хочет использовать это с T4MVC, просто должен изменить тип routeValuesна, ActionResultа затем в url.Actionфункции изменить routeValuesнаrouteValues.GetRouteValueDictionary()
JConstantine
12
@Kasper Skov: поместите метод в статический класс, затем укажите пространство имен этого класса в Web.config в /configuration/system.web/pages/namespacesэлементе.
Умар Фарук Хаваджа
4
Отлично !, вместо этого altя принимаю объект для получения свойств html с использованием анонимного объекта var attributes = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);и, наконец,foreach (var attr in attributes){ imgBuilder.MergeAttribute(attr.Key, attr.Value.ToString());}
гузарт
7
Я не мог заставить это работать, пока не понял, что, поскольку я использую области, необходимо добавить ссылку на пространство имен класса (как указано Умаром) во ВСЕ файлы web.config в папке представлений для всех областей, а также /Viewsпапка верхнего уровня
Mark_Gibson 03
2
Если вам это нужно только на одной странице, вместо изменения файлов Web.config вы можете добавить оператор @using в .cshtml и сослаться на пространство имен
JML
64

Вы можете использовать Url.Contentэтот параметр для всех ссылок, поскольку он переводит тильду ~в корневой uri.

<a href="@Url.Action("Edit", new { id=MyId })">
    <img src="@Url.Content("~/Content/Images/Image.bmp")", alt="Edit" />
</a>
jgauffin
источник
3
Это отлично работает в MVC3. Спасибо! <a href="@Url.Action("Index","Home")"><img src="@Url.Content("~/Content/images/myimage.gif")" alt="Home" /></a>
rk1962 06
24

Основываясь на приведенном выше ответе Лукаса, это перегрузка, которая принимает имя контроллера в качестве параметра, аналогично ActionLink. Используйте эту перегрузку, когда ваше изображение ссылается на действие в другом контроллере.

// Extension method
public static MvcHtmlString ActionImage(this HtmlHelper html, string action, string controllerName, object routeValues, string imagePath, string alt)
{
    var url = new UrlHelper(html.ViewContext.RequestContext);

    // build the <img> tag
    var imgBuilder = new TagBuilder("img");
    imgBuilder.MergeAttribute("src", url.Content(imagePath));
    imgBuilder.MergeAttribute("alt", alt);
    string imgHtml = imgBuilder.ToString(TagRenderMode.SelfClosing);

    // build the <a> tag
    var anchorBuilder = new TagBuilder("a");

    anchorBuilder.MergeAttribute("href", url.Action(action, controllerName, routeValues));
    anchorBuilder.InnerHtml = imgHtml; // include the <img> tag inside
    string anchorHtml = anchorBuilder.ToString(TagRenderMode.Normal);

    return MvcHtmlString.Create(anchorHtml);
}
коростель
источник
1
никаких комментариев к вашему добавлению здесь ... ну, я говорю, что хорошая модификация данного кода. +1 от меня.
Zack Jannsen
11

Что ж, вы можете использовать решение @Lucas, но есть и другой способ.

 @Html.ActionLink("Update", "Update", *Your object value*, new { @class = "imgLink"})

Теперь добавьте этот класс в файл CSS или на свою страницу:

.imgLink
{
  background: url(YourImage.png) no-repeat;
}

С этим классом любая ссылка будет иметь желаемое изображение.

AdrianoRR
источник
2
@KasperSkov Я забыл об этой маленькой проблеме. По какой-то причине это конкретное переопределение помощника actionLink не работает с приведенным выше примером. Вы должны ControllerNameдействовать. Как это:@Html.ActionLink("Update", "Update", "*Your Controller*",*object values*, new {@class = "imgLink"})
AdrianoRR
3

Это оказалось очень полезной веткой.

Для тех, кто страдает аллергией на фигурные скобки, вот ответы Лукаса и Крейка на VB.NET:

Public Module ActionImage
    <System.Runtime.CompilerServices.Extension()>
    Function ActionImage(html As HtmlHelper, Action As String, RouteValues As Object, ImagePath As String, AltText As String) As MvcHtmlString

        Dim url = New UrlHelper(html.ViewContext.RequestContext)

        Dim imgHtml As String
        'Build the <img> tag
        Dim imgBuilder = New TagBuilder("img")
        With imgBuilder
            .MergeAttribute("src", url.Content(ImagePath))
            .MergeAttribute("alt", AltText)
            imgHtml = .ToString(TagRenderMode.Normal)
        End With

        Dim aHtml As String
        'Build the <a> tag
        Dim aBuilder = New TagBuilder("a")
        With aBuilder
            .MergeAttribute("href", url.Action(Action, RouteValues))
            .InnerHtml = imgHtml 'Include the <img> tag inside
            aHtml = aBuilder.ToString(TagRenderMode.Normal)
        End With

        Return MvcHtmlString.Create(aHtml)

    End Function

    <Extension()>
    Function ActionImage(html As HtmlHelper, Action As String, Controller As String, RouteValues As Object, ImagePath As String, AltText As String) As MvcHtmlString

        Dim url = New UrlHelper(html.ViewContext.RequestContext)

        Dim imgHtml As String
        'Build the <img> tag
        Dim imgBuilder = New TagBuilder("img")
        With imgBuilder
            .MergeAttribute("src", url.Content(ImagePath))
            .MergeAttribute("alt", AltText)
            imgHtml = .ToString(TagRenderMode.Normal)
        End With

        Dim aHtml As String
        'Build the <a> tag
        Dim aBuilder = New TagBuilder("a")
        With aBuilder
            .MergeAttribute("href", url.Action(Action, Controller, RouteValues))
            .InnerHtml = imgHtml 'Include the <img> tag inside
            aHtml = aBuilder.ToString(TagRenderMode.Normal)
        End With

        Return MvcHtmlString.Create(aHtml)

    End Function

End Module
dansan
источник
1

Этот метод расширения также работает (для размещения в общедоступном статическом классе):

    public static MvcHtmlString ImageActionLink(this AjaxHelper helper, string imageUrl, string altText, string actionName, object routeValues, AjaxOptions ajaxOptions)
    {
        var builder = new TagBuilder("img");
        builder.MergeAttribute("src", imageUrl);
        builder.MergeAttribute("alt", altText);
        var link = helper.ActionLink("[replaceme]", actionName, routeValues, ajaxOptions);
        return new MvcHtmlString( link.ToHtmlString().Replace("[replaceme]", builder.ToString(TagRenderMode.SelfClosing)) );
    }
Диего
источник
1

Чтобы добавить ко всей работе Awesome, начатой ​​Люком, я публикую еще одну, которая принимает значение класса css и рассматривает class и alt как необязательные параметры (действительные в ASP.NET 3.5+). Это расширит функциональность, но сократит количество необходимых перегруженных методов.

// Extension method
    public static MvcHtmlString ActionImage(this HtmlHelper html, string action,
        string controllerName, object routeValues, string imagePath, string alt = null, string cssClass = null)
    {
        var url = new UrlHelper(html.ViewContext.RequestContext);

        // build the <img> tag
        var imgBuilder = new TagBuilder("img");
        imgBuilder.MergeAttribute("src", url.Content(imagePath));
        if(alt != null)
            imgBuilder.MergeAttribute("alt", alt);
        if (cssClass != null)
            imgBuilder.MergeAttribute("class", cssClass);

        string imgHtml = imgBuilder.ToString(TagRenderMode.SelfClosing);

        // build the <a> tag
        var anchorBuilder = new TagBuilder("a");

        anchorBuilder.MergeAttribute("href", url.Action(action, controllerName, routeValues));
        anchorBuilder.InnerHtml = imgHtml; // include the <img> tag inside
        string anchorHtml = anchorBuilder.ToString(TagRenderMode.Normal);

        return MvcHtmlString.Create(anchorHtml);
    }
Зак Яннсен
источник
Кроме того, для всех, кто плохо знаком с MVC, полезный совет - значение routeValue должно быть @ RouteTable.Routes ["Home"] или любым другим идентификатором вашего "маршрута" в RouteTable.
Zack Jannsen
1

модификация слайда изменена Helper

     public static IHtmlString ActionImageLink(this HtmlHelper html, string action, object routeValues, string styleClass, string alt)
    {
        var url = new UrlHelper(html.ViewContext.RequestContext);
        var anchorBuilder = new TagBuilder("a");
        anchorBuilder.MergeAttribute("href", url.Action(action, routeValues));
        anchorBuilder.AddCssClass(styleClass);
        string anchorHtml = anchorBuilder.ToString(TagRenderMode.Normal);

        return new HtmlString(anchorHtml);
    }

CSS-класс

.Edit {
       background: url('../images/edit.png') no-repeat right;
       display: inline-block;
       height: 16px;
       width: 16px;
      }

Создайте ссылку, просто передайте имя класса

     @Html.ActionImageLink("Edit", new { id = item.ID }, "Edit" , "Edit") 
dnxit
источник
0

Я присоединился к ответу Лукаса и « Помощники ASP.NET MVC, объединение двух объектов htmlAttributes вместе » и плюс имя_контроллера к следующему коду:

// Пример использования в CSHTML

 @Html.ActionImage("Edit",
       "EditController"
        new { id = MyId },
       "~/Content/Images/Image.bmp",
       new { width=108, height=129, alt="Edit" })

И класс расширения для кода выше:

using System.Collections.Generic;
using System.Reflection;
using System.Web.Mvc;

namespace MVC.Extensions
{
    public static class MvcHtmlStringExt
    {
        // Extension method
        public static MvcHtmlString ActionImage(
          this HtmlHelper html,
          string action,
          string controllerName,
          object routeValues,
          string imagePath,
          object htmlAttributes)
        {
            ///programming/4896439/action-image-mvc3-razor
            var url = new UrlHelper(html.ViewContext.RequestContext);

            // build the <img> tag
            var imgBuilder = new TagBuilder("img");
            imgBuilder.MergeAttribute("src", url.Content(imagePath));

            var dictAttributes = htmlAttributes.ToDictionary();

            if (dictAttributes != null)
            {
                foreach (var attribute in dictAttributes)
                {
                    imgBuilder.MergeAttribute(attribute.Key, attribute.Value.ToString(), true);
                }
            }                        

            string imgHtml = imgBuilder.ToString(TagRenderMode.SelfClosing);

            // build the <a> tag
            var anchorBuilder = new TagBuilder("a");
            anchorBuilder.MergeAttribute("href", url.Action(action, controllerName, routeValues));
            anchorBuilder.InnerHtml = imgHtml; // include the <img> tag inside            
            string anchorHtml = anchorBuilder.ToString(TagRenderMode.Normal);

            return MvcHtmlString.Create(anchorHtml);
        }

        public static IDictionary<string, object> ToDictionary(this object data)
        {
            ///programming/6038255/asp-net-mvc-helpers-merging-two-object-htmlattributes-together

            if (data == null) return null; // Or throw an ArgumentNullException if you want

            BindingFlags publicAttributes = BindingFlags.Public | BindingFlags.Instance;
            Dictionary<string, object> dictionary = new Dictionary<string, object>();

            foreach (PropertyInfo property in
                     data.GetType().GetProperties(publicAttributes))
            {
                if (property.CanRead)
                {
                    dictionary.Add(property.Name, property.GetValue(data, null));
                }
            }
            return dictionary;
        }
    }
}
Томаш Кубес
источник
0

Это было бы очень хорошо

<a href="<%:Url.Action("Edit","Account",new {  id=item.UserId }) %>"><img src="../../Content/ThemeNew/images/edit_notes_delete11.png" alt="Edit" width="25px" height="25px" /></a>
user3181441
источник