Action Image MVC3 Razor


119

Qual è il modo migliore per sostituire i collegamenti con le immagini usando Razor in MVC3. Sto semplicemente facendo questo al momento:

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

C'è un modo migliore?


15
Non direttamente correlato, ma ti consiglio vivamente di utilizzare file PNG o JPG (a seconda del contenuto dell'immagine) invece di file BMP. E come suggerito da @jgauffin, prova anche a utilizzare i percorsi relativi dell'applicazione ( ~/Content). Il percorso ../../Contentpuò non essere valido da percorsi diversi (ad esempio /, /Home, /Home/Index).
Lucas

Grazie Lucas. Uso png ma il consiglio per usare URL.Content è quello che stavo cercando. votare a favore :)
davy

Risposte:


217

Puoi creare un metodo di estensione per HtmlHelper per semplificare il codice nel tuo file CSHTML. Potresti sostituire i tuoi tag con un metodo come questo:

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

Ecco un metodo di estensione di esempio per il codice sopra:

// 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
Eccellente snippet. Chiunque voglia usarlo con T4MVC deve solo cambiare il tipo di routeValuesin ActionResulte poi nella url.Actionfunzione cambiare routeValuesinrouteValues.GetRouteValueDictionary()
JConstantine

12
@Kasper Skov: posiziona il metodo in una classe statica, quindi fai riferimento allo spazio dei nomi di quella classe nel Web.config /configuration/system.web/pages/namespacesnell'elemento.
Umar Farooq Khawaja

4
Bello !, invece di alt, accetto un oggetto per ricevere proprietà html utilizzando un oggetto anonimo quindi var attributes = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);e infineforeach (var attr in attributes){ imgBuilder.MergeAttribute(attr.Key, attr.Value.ToString());}
guzart

7
Non sono riuscito a farlo funzionare finché non mi sono reso conto che, poiché sto usando le aree, è necessario aggiungere un riferimento allo spazio dei nomi della classe (come sottolineato da Umar) a TUTTI i file web.config nella cartella Visualizzazioni per tutte le aree e la /Viewscartella di livello superiore
Mark_Gibson

2
Se ti serve solo in una singola pagina, invece di modificare i file Web.config, puoi aggiungere un'istruzione @using nel file .cshtml e fare riferimento allo spazio dei nomi
JML

64

È possibile utilizzare Url.Contentche funziona per tutti i collegamenti poiché traduce la tilde nell'uri ~di root.

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

3
Funziona alla grande in MVC3. Grazie! <a href="@Url.Action("Index","Home")"><img src="@Url.Content("~/Content/images/myimage.gif")" alt="Home" /></a>
rk1962

24

Basandosi sulla risposta di Lucas sopra, questo è un sovraccarico che prende il nome di un controller come parametro, simile ad ActionLink. Usa questo overload quando l'immagine si collega a un'azione in un controller diverso.

// 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
nessun commento sulla tua aggiungi qui ... beh, dico buona modifica al codice dato. +1 da me.
Zack Jannsen

11

Bene, potresti usare la soluzione @Lucas, ma c'è anche un altro modo.

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

Ora aggiungi questa classe in un file CSS o nella tua pagina:

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

Con quella classe, qualsiasi collegamento avrà l'immagine desiderata.


2
@KasperSkov ho dimenticato questo piccolo problema. Per qualche ragione, questo particolare override dell'helper actionLink, non funziona con l'esempio sopra. Devi fare la ControllerNametua azione. In questo modo:@Html.ActionLink("Update", "Update", "*Your Controller*",*object values*, new {@class = "imgLink"})
AdrianoRR

3

Questo si è rivelato un thread molto utile.

Per coloro che sono allergici alle parentesi graffe, ecco la versione VB.NET delle risposte di Lucas e Crake:

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

Funziona anche questo metodo di estensione (da inserire in una classe statica pubblica):

    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

Per aggiungere a tutto il lavoro di Awesome iniziato da Luke ne sto postando uno in più che prende un valore di classe css e tratta class e alt come parametri opzionali (validi sotto ASP.NET 3.5+). Ciò consentirà più funzionalità ma ridurrà il numero di metodi sovraccaricati necessari.

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

Inoltre, per chiunque sia nuovo in MVC, un suggerimento utile: il valore di routeValue dovrebbe essere @ RouteTable.Routes ["Home"] o qualunque sia il tuo id "route" in RouteTable.
Zack Jannsen

1

modifica della diapositiva modificata 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);
    }

Classe CSS

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

Crea il collegamento semplicemente passa il nome della classe

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

0

Ho unito la risposta di Lucas e " ASP.NET MVC Helpers, Merging two object htmlAttributes together " e più controllerName al codice seguente:

// Esempio di utilizzo in CSHTML

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

E la classe di estensione per il codice sopra:

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

Questo funzionerebbe molto bene

<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>
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.