ASP.NET MVC3 - Html.ActionLink 的使用
我需要使用 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
的最佳重载方法匹配有一些无效参数 当我使用“编辑”等普通文本更改上面的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
格式参数的类型为
Func
。它必须返回
HelperResult
,而不是IHtmlString
。它的定义方式是允许您传递 内联助手。
要传递内联助手,请删除
(item) =>
;内联帮助程序隐式生成带有item
参数的 lambda 表达式。要传递普通的 lambda 表达式,您需要使其返回
HelperResult
实例。HelperResult
s 采取Action
,因此您可以编写编辑:我没有意识到参数被声明为
Func
。这意味着您可以传递内联助手或任何其他 lambda 表达式。你的第二个例子应该有效。
您还可以使用内联助手。要在没有 HTML 标记的情况下执行此操作,请使用特殊的
标记:Razor 将从输出中删除
。The format parameter is of type
Func<dynamic, HelperResult>
.It must return a
HelperResult
, not anIHtmlString
.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 anitem
parameter.To pass a normal lambda expression, you need to make it return a
HelperResult
instance.HelperResult
s take anAction<TextWriter>
, so you would writeEDIT: 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:Razor will drop the
<text>
from the output.您传递的显示字符串的类型为 DateTime。尝试提供字符串输入。
The display string you are passing is of the type DateTime. Try giving String Input.