.NET MVC 强类型助手 - 从属性中获取价值?

发布于 2024-10-15 00:17:28 字数 851 浏览 2 评论 0原文

我正在创建一个强类型助手(参考:所以问题)。正如下面代码中的“注释”,是否可以以某种方式从表达的属性中获取值,从而绕过可选的 selectedValue 参数?

    <Extension()> _
    Public Function DatePickerFor(Of TModel As Class, TProperty)(ByVal htmlHelper As HtmlHelper(Of TModel), ByVal expression As Expression(Of Func(Of TModel, TProperty)), Optional ByVal selectedValue As Nullable(Of Date) = Nothing) As MvcHtmlString
        Dim inputName = ExpressionHelper.GetExpressionText(expression)
        Dim inputValue = selectedValue 
        //Something like this possible? 
        //inputValue = ExpressionHelper.GetExpressionValue(expression)
        Return DatePicker(htmlHelper, inputName, inputValue)
    End Function

I'm creating a strongly typed helper (ref: SO question). As 'commented' in the code below, is it possible to somehow get the value from the expressed property and thus bypass the optional selectedValue parameter?

    <Extension()> _
    Public Function DatePickerFor(Of TModel As Class, TProperty)(ByVal htmlHelper As HtmlHelper(Of TModel), ByVal expression As Expression(Of Func(Of TModel, TProperty)), Optional ByVal selectedValue As Nullable(Of Date) = Nothing) As MvcHtmlString
        Dim inputName = ExpressionHelper.GetExpressionText(expression)
        Dim inputValue = selectedValue 
        //Something like this possible? 
        //inputValue = ExpressionHelper.GetExpressionValue(expression)
        Return DatePicker(htmlHelper, inputName, inputValue)
    End Function

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

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

发布评论

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

评论(1

ゝ杯具 2024-10-22 00:17:28

如果您想获取表达式指向的相应属性的值,可以使用 FromLambdaExpression 方法:

Dim metadata = ModelMetadata.FromLambdaExpression(expression)
Dim value = metadata.Model

If you want to get the value of the corresponding property that the expression is pointing to you could use the FromLambdaExpression method:

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