通常、ASP.NETビューでは、次の関数を使用してURLを取得できます(<a>
):
Url.Action("Action", "Controller");
しかし、カスタムHTMLヘルパーからそれを行う方法を見つけることができません。私は持っています
public class MyCustomHelper
{
public static string ExtensionMethod(this HtmlHelper helper)
{
}
}
ヘルパー変数にはActionメソッドとGenerateLinkメソッドがありますが、<a>
’s。 ASP.NET MVCソースコードを掘り下げましたが、簡単な方法は見つかりませんでした。
問題は、上記のUrlがビュークラスのメンバーであり、そのインスタンス化のためにいくつかのコンテキストとルートマップが必要なことです(私は対処したくないし、とにかくするつもりはありません)。別の方法として、HtmlHelperクラスのインスタンスには、Urlインスタンスのコンテキスト情報のサブセットの夕食のいずれかと思われるコンテキストもあります(ただし、ここでは扱いません)。
要約すると、私はそれが可能であると思いますが、私が見ることができるすべての方法は、多少の内部ASP.NETのもので何らかの操作を伴うので、より良い方法があるかどうか疑問に思います。
編集:たとえば、1つの可能性は次のようになります。
public class MyCustomHelper
{
public static string ExtensionMethod(this HtmlHelper helper)
{
UrlHelper urlHelper = new UrlHelper(helper.ViewContext.RequestContext);
urlHelper.Action("Action", "Controller");
}
}
しかし、それは正しくないようです。私は自分でUrlHelperのインスタンスを扱いたくありません。もっと簡単な方法が必要です。
このようなurlヘルパーは、htmlヘルパー拡張メソッド内で作成できます。
var urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);
var url = urlHelper.Action("Home", "Index")
UrlHelper
publicおよびstaticクラスを使用してリンクを取得することもできます。
UrlHelper.GenerateUrl(null, actionName, controllerName, null, null, null, routeValues, htmlHelper.RouteCollection, htmlHelper.ViewContext.RequestContext, true)
この例では、少し利点がある新しいUrlHelperクラスを作成する必要はありません。
UrlHelper
インスタンスのHtmlHelper
を取得するための私の小さな拡張メソッドは次のとおりです。
public static partial class UrlHelperExtensions
{
/// <summary>
/// Gets UrlHelper for the HtmlHelper.
/// </summary>
/// <param name="htmlHelper">The HTML helper.</param>
/// <returns></returns>
public static UrlHelper UrlHelper(this HtmlHelper htmlHelper)
{
if (htmlHelper.ViewContext.Controller is Controller)
return ((Controller)htmlHelper.ViewContext.Controller).Url;
const string itemKey = "HtmlHelper_UrlHelper";
if (htmlHelper.ViewContext.HttpContext.Items[itemKey] == null)
htmlHelper.ViewContext.HttpContext.Items[itemKey] = new UrlHelper(htmlHelper.ViewContext.RequestContext, htmlHelper.RouteCollection);
return (UrlHelper)htmlHelper.ViewContext.HttpContext.Items[itemKey];
}
}
次のように使用します。
public static MvcHtmlString RenderManagePrintLink(this HtmlHelper helper, )
{
var url = htmlHelper.UrlHelper().RouteUrl('routeName');
//...
}
(参照用にこのansを投稿しています)