アクション画像MVC3 Razor


119

MVC3でRazorを使用してリンクを画像に置き換える最良の方法は何ですか。私は現時点でこれを単にしています:

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

もっと良い方法はありますか?


15
直接関係はありませんが、BMPファイルではなく、PNGまたはJPGファイル(画像の内容に応じて)を使用することを強くお勧めします。そして、@ jgauffinが提案したように、アプリケーションの相対パス(~/Content)も使用してみてください。パス../../Contentは、別のルート(/など/Home/Home/Index)からは有効でない可能性があります。
ルーカス

ルーカスに感謝します。私はpngを使用していますが、URL.Contentを使用するためのアドバイスは私が探していたものです。投票:)
davy

回答:


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でこれを使用したい人は、toの型を変更routeValuesActionResult、次にurl.Action関数を次のように変更routeValuesする必要がありますrouteValues.GetRouteValueDictionary()
JConstantine

12
@Kasper Skov:メソッドを静的クラスに配置し、/configuration/system.web/pages/namespaces要素のWeb.configでそのクラスの名前空間を参照します。
Umar Farooq Khawaja 2011

4
ニース!代わりにalt、私はその後、匿名オブジェクトを使用してHTMLのプロパティを受け取るオブジェクトを受け入れvar attributes = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);、最後にforeach (var attr in attributes){ imgBuilder.MergeAttribute(attr.Key, attr.Value.ToString());}
guzart

7
Areasを使用しているため、クラスの名前空間への参照(Umarが指摘)をすべてのAreasのViewsフォルダーにあるすべてのweb.configファイルに追加する必要があることに気づくまで、これは機能しませんでした。トップレベルの/Viewsフォルダー
Mark_Gibson

2
Web.configファイルを変更するのではなく、これを1つのページでのみ必要な場合は、.cshtmlに@usingステートメントを追加して、名前空間を参照できます
JML

64

Url.Contentチルダ~をルートURIに変換するため、すべてのリンクで機能するwhich を使用できます。

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

3
これはMVC3でうまく機能します。ありがとうございました!<a href="@Url.Action("Index","Home")"><img src="@Url.Content("~/Content/images/myimage.gif")" alt="Home" /></a>
rk1962

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 2013年

11

@Lucasソリューションを使用することもできますが、別の方法もあります。

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

次に、このクラスをCSSファイルまたはページに追加します。

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

そのクラスを使用すると、どのリンクにも希望の画像が含まれます。


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

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

Lukeによって開始されたすべての素晴らしい作業に追加するために、cssクラス値を受け取り、classおよびaltをオプションのパラメーターとして扱う(ASP.NET 3.5以降で有効)もう1つ投稿します。これにより、より多くの機能が可能になりますが、必要なオーバーロードメソッドの数が減ります。

// 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の「ルート」IDが何であってもかまいません。
Zack Jannsen 2013年

1

スライドの変更がヘルパーに変更されました

     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") 

0

Lucasからの回答と「ASP.NET MVCヘルパー、2つのオブジェクトのhtmlAttributesをマージする」に加えて、controllerNameを次のコードに追加しました。

// 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>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.