Obraz akcji MVC3 Razor


119

Jaki jest najlepszy sposób na zastąpienie linków obrazami przy użyciu Razor w MVC3. Po prostu robię to w tej chwili:

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

Czy jest lepszy sposób?


15
Nie jest to bezpośrednio związane, ale zdecydowanie sugeruję użycie plików PNG lub JPG (w zależności od zawartości obrazu) zamiast plików BMP. I jak zasugerował @jgauffin, spróbuj również użyć ścieżek względnych aplikacji ( ~/Content). Ścieżka ../../Contentnie może być ważne z różnymi drogami (np /, /Home, /Home/Index).
Lucas

Dzięki, Lucas. Używam png, ale rada dotycząca używania adresu URL. Treść jest tym, czego szukałem. głosuj w górę :)
davy

Odpowiedzi:


217

Możesz utworzyć metodę rozszerzenia dla HtmlHelper, aby uprościć kod w pliku CSHTML. Możesz zamienić tagi na taką metodę:

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

Oto przykładowa metoda rozszerzenia powyższego kodu:

// 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
Doskonały fragment. Każdy, kto chce używać tego z T4MVC, musi po prostu zmienić typ routeValuesna, ActionResulta następnie url.Actionzmienić funkcję routeValuesnarouteValues.GetRouteValueDictionary()
JConstantine

12
@Kasper Skov: Umieść metodę w klasie statycznej, a następnie odwołaj się do przestrzeni nazw tej klasy w pliku Web.config w /configuration/system.web/pages/namespaceselemencie.
Umar Farooq Khawaja,

4
Fajnie !, zamiast tego altakceptuję obiekt do otrzymywania właściwości html za pomocą anonimowego obiektu, var attributes = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);a na koniecforeach (var attr in attributes){ imgBuilder.MergeAttribute(attr.Key, attr.Value.ToString());}
guzart

7
Nie mogłem tego uruchomić, dopóki nie zdałem sobie sprawy, że ponieważ używam Obszarów, odniesienie do przestrzeni nazw klasy (jak wskazał Umar) musi zostać dodane do WSZYSTKICH plików web.config w folderze Widoki dla wszystkich obszarów, a także /Viewsfolder najwyższego poziomu
Mark_Gibson

2
Jeśli potrzebujesz tego tylko na jednej stronie, zamiast zmieniać pliki Web.config, możesz dodać instrukcję @using w .cshtml i odwołać się do przestrzeni nazw
JML

64

Możesz użyć, Url.Contentktóry działa dla wszystkich linków, ponieważ tłumaczy tyldę ~na główny URI.

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

3
Działa to świetnie w MVC3. Dziękuję Ci! <a href="@Url.Action("Index","Home")"><img src="@Url.Content("~/Content/images/myimage.gif")" alt="Home" /></a>
rk1962

24

Opierając się na powyższej odpowiedzi Lucasa, jest to przeciążenie, które przyjmuje nazwę kontrolera jako parametr, podobnie jak ActionLink. Użyj tego przeciążenia, gdy obraz łączy się z akcją w innym kontrolerze.

// 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
brak komentarzy do twojego dodatku ... cóż, mówię dobrą modyfikację podanego kodu. +1 ode mnie.
Zack Jannsen

11

Cóż, możesz użyć rozwiązania @Lucas, ale jest też inny sposób.

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

Teraz dodaj tę klasę do pliku CSS lub na swojej stronie:

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

W przypadku tej klasy każdy link będzie zawierał pożądany obraz.


2
@KasperSkov Zapomniałem o tym małym problemie. Z jakiegoś powodu to szczególne zastąpienie helpera actionLink nie działa z powyższym przykładem. Musisz do ControllerNameswojej akcji. W ten sposób:@Html.ActionLink("Update", "Update", "*Your Controller*",*object values*, new {@class = "imgLink"})
AdrianoRR

3

Okazało się, że był to bardzo przydatny wątek.

Dla tych, którzy są uczuleni na aparat ortodontyczny, oto odpowiedzi Lucasa i Crake'a w wersji 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

1

Ta metoda rozszerzenia również działa (do umieszczenia w publicznej klasie statycznej):

    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

Aby dodać do całej niesamowitej pracy rozpoczętej przez Luke'a, publikuję jeszcze jedną, która przyjmuje wartość klasy css i traktuje class i alt jako parametry opcjonalne (ważne pod ASP.NET 3.5+). Zapewni to większą funkcjonalność, ale zmniejszy liczbę potrzebnych przeciążonych metod.

// 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);
    }

Ponadto, dla każdego nowego użytkownika MVC, pomocna wskazówka - wartość routeValue powinna mieć wartość @ RouteTable.Routes ["Home"] lub jakikolwiek identyfikator "trasy" znajduje się w RouteTable.
Zack Jannsen

1

modyfikacja slajdu zmieniona Pomocnik

     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);
    }

Klasa CSS

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

Utwórz łącze, po prostu podaj nazwę klasy

     @Html.ActionImageLink("Edit", new { id = item.ID }, "Edit" , "Edit") 

0

Dołączyłem do odpowiedzi od Lucasa i „ Pomocnicy ASP.NET MVC, łączenie dwóch obiektów htmlAttributes razem ” i plus nazwa kontrolera do następującego kodu:

// Przykładowe użycie w CSHTML

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

Oraz klasa rozszerzenia dla powyższego kodu:

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

To by działało bardzo dobrze

<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>
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.