1

我正在尝试处理在 ASP.NET MVC3 WinGrid 中呈现时可能为空的 DateTime 的情况。尝试设置 WebGridColumn 时出现错误。我有一个正在工作,一个没有。正在工作的想法较少,因为 html 是在辅助函数中生成的。我无法弄清楚为什么理想的那个不起作用。

这是一个有效的:

$gridSummary.Column("OngoingDate", 
    header: "Ongoing", 
    format: Html.DateTimeActionLink, 
    style: "ongoingDate")

public static object DateTimeActionLink(this HtmlHelper htmlHelper, dynamic item)
{
    DateTime? linkDateTime = item.OngoingDate;
    if (linkDateTime != null && linkDateTime.HasValue)
    {
        var x = linkDateTime.Value.ToString("MM/dd/yyyy");
        return LinkExtensions.ActionLink(htmlHelper, x, "Edit", "MdsAsmtSectionQuestions", new { mdsId = item.OngoingId }, null);
    }

    return MvcHtmlString.Empty;
}       

这是不工作的一个:

    $gridSummary.Column("AssessmentInfo", header: "Open Type | ARD",
                        format: (item) =>
                        {
                            return Html.DateTimeActionLink(
                                item.AssessmentDate,
                                "MM/dd/yyyy",
                                x => Html.ActionLink(item.AssessmentInfo + " | " + x, "Edit", "MdsAsmtSectionQuestions", new { mdsId = item.OngoingId }, null));
                        },
                        style: "assessmentInfo")

    public static object DateTimeActionLink(this HtmlHelper htmlHelper, dynamic item, string format, Func<string, MvcHtmlString> actionLink)
    {
        Nullable<DateTime> linkDateTime = item;

        if (linkDateTime != null && linkDateTime.HasValue)
            return actionLink(linkDateTime.Value.ToString(format));

        return MvcHtmlString.Empty;
    }
4

2 回答 2

1

代替:

...
format: (item) =>
                        {
                            return Html.DateTimeActionLink(
                                item.AssessmentDate,
                                "MM/dd/yyyy",
                                x => Html.ActionLink(item.AssessmentInfo + " | " + x, "Edit", "MdsAsmtSectionQuestions", new { mdsId = item.OngoingId }, null));
                        }
...

尝试:

...
format: (item) =>
                            Html.DateTimeActionLink(
                                    //added cast
                                    (Nullable<DateTime>)(item.AssessmentDate),
                                    "MM/dd/yyyy",
                                    //added cast
                                    x => Html.ActionLink((string)(item.AssessmentInfo) + " | " + x, "Edit", "MdsAsmtSectionQuestions", new { mdsId = item.OngoingId }, null));
...
于 2012-06-15T20:23:33.860 回答
1

您不能在当前版本的 Razor 中使用 lambda 表达式。基本的很酷,但除此之外它们就会崩溃。我认为 Razor 2.0 支持它,但我必须检查:)

使用 Html 助手没有任何问题。这就是他们的目的。考虑到您基本上是在调用相同的代码。如果您打算在另一个位置使用辅助方法,那么您将不会有代码重复。保持干燥。

另外,我不确定为什么你有一个$我相当肯定你需要一个@符号,因为它是 ac# 方法而不是 jQuery。

于 2012-06-16T03:58:02.553 回答