Action Image MVC3 Razor


119

MVC3'te Razor kullanarak bağlantıları görüntülerle değiştirmenin en iyi yolu nedir. Bunu şu anda yapıyorum:

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

Daha iyi bir yol var mı?


15
Doğrudan ilgili değil, ancak BMP dosyaları yerine PNG veya JPG dosyalarını (görüntü içeriğine bağlı olarak) kullanmanızı şiddetle tavsiye ederim. Ve @jgauffin'in önerdiği gibi, uygulamaya göre yolları da kullanmayı deneyin ( ~/Content). Yol ../../Contentfarklı yollardan kadar geçerli olmayabilir (örneğin /, /Home, /Home/Index).
Lucas

Teşekkürler Lucas. Png kullanıyorum ama URL'yi kullanma tavsiyesi aradığım şey içerik. oyla :)
davy

Yanıtlar:


217

CSHTML dosyanızdaki kodu basitleştirmek için HtmlHelper için bir uzantı yöntemi oluşturabilirsiniz. Etiketlerinizi aşağıdaki gibi bir yöntemle değiştirebilirsiniz:

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

Yukarıdaki kod için örnek bir uzatma yöntemi:

// 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
Mükemmel pasaj. İsteyen herkes türünü değiştirmek için T4MVC sadece sahip olan bu kullanmak routeValuesiçin ActionResultve sonra url.Actionfonksiyon değişikliği routeValuesiçinrouteValues.GetRouteValueDictionary()
JConstantine

12
@Kasper Skov: Yöntemi statik bir sınıfa yerleştirin, ardından öğedeki Web.config dosyasındaki bu sınıfın ad alanına başvurun /configuration/system.web/pages/namespaces.
Umar Farooq Khawaja

4
Güzel! altvar attributes = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);foreach (var attr in attributes){ imgBuilder.MergeAttribute(attr.Key, attr.Value.ToString());}
Yerine

7
Alanlar'ı kullandığım için (Umar'ın belirttiği gibi) tüm Alanlar için Görünümler klasöründeki TÜM web.config dosyalarına eklenmesi gerektiğinin farkına varana kadar bunu çalıştıramadım üst düzey /Viewsklasör
Mark_Gibson

2
Buna yalnızca tek bir sayfada ihtiyacınız varsa, Web.config dosyalarını değiştirmek yerine, .cshtml'ye bir @using ifadesi ekleyebilir ve ad alanına başvurabilirsiniz
JML

64

Url.ContentTilde'yi ~kök uri'ye çevirirken, tüm bağlantılar için hangisinin çalıştığını kullanabilirsiniz .

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

3
Bu, MVC3'te harika çalışıyor. Teşekkür ederim! <a href="@Url.Action("Index","Home")"><img src="@Url.Content("~/Content/images/myimage.gif")" alt="Home" /></a>
rk1962

24

Lucas'ın yukarıdaki cevabına dayanarak, bu ActionLink'e benzer şekilde bir denetleyici adını parametre olarak alan bir aşırı yüklemedir. Görüntünüz farklı bir denetleyicideki bir Eyleme bağlandığında bu aşırı yüklemeyi kullanın.

// 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
Buraya eklemeniz hakkında yorum yok ... verilen kodda iyi bir değişiklik diyorum. Benden +1.
Zack Jannsen

11

Peki, @Lucas çözümünü kullanabilirsiniz, ancak başka bir yolu da var.

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

Şimdi, bu sınıfı bir CSS dosyasına veya sayfanıza ekleyin:

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

Bu sınıfla, herhangi bir bağlantı istediğiniz resme sahip olacaktır.


2
@KasperSkov Bu küçük sorunu unuttum. Bazı nedenlerden dolayı, bu belirli actionLink yardımcısının geçersiz kılınması yukarıdaki örnekle çalışmaz. ControllerNameHarekete geçmek zorundasın . @Html.ActionLink("Update", "Update", "*Your Controller*",*object values*, new {@class = "imgLink"})
Şunun

3

Bunun çok faydalı bir konu olduğu ortaya çıktı.

Kıvırcık tellere alerjisi olanlar için, Lucas'ın ve Crake'in cevaplarının VB.NET versiyonu:

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

Bu uzantı yöntemi de çalışır (genel bir statik sınıfa yerleştirilmek üzere):

    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

Luke tarafından başlatılan tüm Harika çalışmalara eklemek için, bir css sınıf değeri alan ve class ve alt'ı isteğe bağlı parametreler olarak değerlendiren (ASP.NET 3.5+ altında geçerli) bir tane daha yayınlıyorum. Bu, daha fazla işlevsellik sağlar, ancak gereken aşırı yüklenmiş yöntemlerin sayısını azaltır.

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

Ayrıca, MVC'de yeni olan herkes için yararlı ipucu - routeValue değerinin değeri @ RouteTable.Routes ["Ana Sayfa"] veya RouteTable'daki "rota" kimliğiniz ne olursa olsun.
Zack Jannsen

1

slayt değişikliği Yardımcısı değiştirildi

     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 Sınıfı

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

Bağlantıyı oluşturun sadece sınıf adını iletin

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

0

Lucas and " ASP.NET MVC Helpers, Merging two object htmlAttributes together " ve artı controllerName'den aşağıdaki koda katıldım :

// CSHTML'de örnek kullanım

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

Ve yukarıdaki kod için uzantı sınıfı:

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

Bu çok iyi iş olur

<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>
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.