如何获取强类型 HtmlHelper 扩展中的部分模型表达式指向

发布于 2024-11-06 18:15:46 字数 562 浏览 1 评论 0原文

好的,说我有以下模型:

public class bar{
    public string bar {get; set; }
}

public class foo{
    public bar mybar{get; set;}
    public string anotherproperty{get; set;}
}

在用户界面中我想这样做:

@Html.MyWhackyHelperFor(x=>x.bar)

它使用:

public static MvcHtmlString MyWhackyHelperFor<TModel, TValue>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TValue>> expression){
//how can i get a the actual bar object here?
}

我如何获得所引用的模型的实际部分?

ok say i have the following model:

public class bar{
    public string bar {get; set; }
}

public class foo{
    public bar mybar{get; set;}
    public string anotherproperty{get; set;}
}

And in the UI i want to do this:

@Html.MyWhackyHelperFor(x=>x.bar)

which uses :

public static MvcHtmlString MyWhackyHelperFor<TModel, TValue>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TValue>> expression){
//how can i get a the actual bar object here?
}

how do i get at the actual part of the model being refered to?

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

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

发布评论

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

评论(1

迷你仙 2024-11-13 18:15:46

您需要将表达式编译为方法,然后调用该方法:

TValue val = expression.Compile()(htmlhelper.ViewData.Model);

You need to compile the expression into a method, then call the method:

TValue val = expression.Compile()(htmlhelper.ViewData.Model);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文