ASP.NET MVC3 - Html.ActionLink 的使用

发布于 2024-12-12 20:21:30 字数 678 浏览 2 评论 0原文

我需要使用 Html.ActionLink 格式:grid.Column 规范的属性。 我的代码如下:

grid.GetHtml(

  grid.Columns( 
    grid.Column(header: "Column 1", format: (item) => @<div class='webgrid-bookname-column-style'> @item.BookName </div>),
    grid.Column(header: "Column 2", format: (item) => Html.ActionLink(item.StartTime, "ShowShippingFileMessage", new { @id = item.BookName }))
  )
)

当我使用这种语法时,它给我的编译错误 System.Web.Helpers.WebGrid.Column(string, string, System.Func, string, bool) 的最佳重载方法匹配有一些无效参数 当我使用“编辑”等普通文本更改上面的 item.StartTime 时,它​​就可以正常工作。

我是 ASP.NET 的新手,谁能帮我理解上述陈述有什么问题吗?

提前致谢。

I need to use the Html.ActionLink in the format: property of the grid.Column specification.
My code goes as below:

grid.GetHtml(

  grid.Columns( 
    grid.Column(header: "Column 1", format: (item) => @<div class='webgrid-bookname-column-style'> @item.BookName </div>),
    grid.Column(header: "Column 2", format: (item) => Html.ActionLink(item.StartTime, "ShowShippingFileMessage", new { @id = item.BookName }))
  )
)

When I use this syntax, it gives me the compilation error of
The best overloaded method match for System.Web.Helpers.WebGrid.Column(string, string, System.Func<dynamic,object>, string, bool) has some invalid arguments
When I change the item.StartTime above with a normal text like "Edit" then it works fine.

I am new to ASP.NET, can anyone please help me understand what is wrong with the above statements?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小矜持 2024-12-19 20:21:30

格式参数的类型为 Func
它必须返回 HelperResult,而不是 IHtmlString
它的定义方式是允许您传递 内联助手
要传递内联助手,请删除 (item) =>;内联帮助程序隐式生成带有 item 参数的 lambda 表达式。
要传递普通的 lambda 表达式,您需要使其返回 HelperResult 实例
HelperResults 采取Action,因此您可以编写

item => new HelperResult(w => w.Write(Html.ActionLink(...).ToHtmlString()))


编辑:我没有意识到参数被声明为Func。这意味着您可以传递内联助手或任何其他 lambda 表达式。
你的第二个例子应该有效。

您还可以使用内联助手。要在没有 HTML 标记的情况下执行此操作,请使用特殊的 标记:

item => @<text>@Html.ActionLink(...)</text>

Razor 将从输出中删除

The format parameter is of type Func<dynamic, HelperResult>.
It must return a HelperResult, not an IHtmlString.
It is defined this way to allow you to pass an inline helper.
To pass an inline helper, remove (item) =>; inline helpers implicitly generate a lambda expression with an item parameter.
To pass a normal lambda expression, you need to make it return a HelperResult instance.
HelperResults take an Action<TextWriter>, so you would write

item => new HelperResult(w => w.Write(Html.ActionLink(...).ToHtmlString()))


EDIT: I hadn't realized that the parameter is declared as Func<dynamic, object>. That means you can either pass an inline helper or any other lambda expression.
Your second example ought to work.

You can also use an inline helper. To do that without an HTML tag, use the special <text> tag:

item => @<text>@Html.ActionLink(...)</text>

Razor will drop the <text> from the output.

吻风 2024-12-19 20:21:30

您传递的显示字符串的类型为 DateTime。尝试提供字符串输入。

grid.Column(header: "Column 2", format: (item) => Html.ActionLink(item.StartTime.ToString(), "ShowShippingFileMessage", new { @id = item.BookName }))

The display string you are passing is of the type DateTime. Try giving String Input.

grid.Column(header: "Column 2", format: (item) => Html.ActionLink(item.StartTime.ToString(), "ShowShippingFileMessage", new { @id = item.BookName }))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文