MVC 4 - 构建访问 ViewData 的帮助程序
本文关键字:ViewData 帮助程序 访问 构建 MVC | 更新日期: 2024-10-30 17:29:57
我正在尝试构建一个可以执行此逻辑的助手:
if (ViewData.ModelState[""] != null && ViewData.ModelState[""].Errors.Any())
{
<div class="note note-danger">
<h4 class="block">Errors</h4>
<p>@Html.ValidationSummary()</p>
</div>
}
它需要访问ViewData和Html.ValidationSummary。
这些是否需要发送到帮助程序中,帮助程序可以通过某个基类以某种方式访问它们吗?
我的助手:
public static class ValidationSummaryHelper
{
public static HtmlString Summary(???)
{ }}
我不知道
它在 C# 中的语法,但在 VB 中它看起来像这样:
<Extension>
Public Function AddCustomValidationSummary(htmlHelper As HtmlHelper) As MvcHtmlString
Dim result As String = String.Empty
If (htmlHelper.ViewData.ModelState("") Is Nothing) AndAlso (htmlHelper.ViewData.ModelState("").Errors.Any()) Then
result = "<div class='note note-danger'><h4 class='block'>Errors</h4><p>" & htmlHelper.ValidationSummary().ToString() & "</p></div>"
End If
Return New MvcHtmlString(result)
End Function
像这样使用它:
@Html.AddCustomValidationSummary()
在 C# 中相同
public static class ValidationExtensions
{
public static MvcHtmlString AddCustomValidationSummary(this HtmlHelper htmlHelper)
{
string result = "";
if (htmlHelper.ViewData.ModelState[""] != null && htmlHelper.ViewData.ModelState[""].Errors.Any())
{
result = "<div class='note note-danger'><h4 class='block'>Errors</h4><p>" + htmlHelper.ValidationSummary().ToString() + "</p></div>";
}
return new MvcHtmlString(result);
}
}