gpt4 book ai didi

c# - 如何读取 html 帮助元素的名称

转载 作者:太空狗 更新时间:2023-10-29 19:50:27 24 4
gpt4 key购买 nike

在 mvc 中是否有任何机会读取将分配给 html 控件的名称?

例如我使用这段代码:

<div>
@Html.LabelFor(x => x.Name)
@Html.TextBoxFor(x => x.Name)
@Html.ValidationMessageFor(x => x.Name)
@Html.HiddenFor(x => x.Id)

<div>
I want to display here a TextBox name
</div>

</div>

我想得到输入名称的名称。此代码是部分 View 的片段。元素名称看起来像 children[1].Name

最佳答案

@Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("名称")或者您可以使用通用 HtmlHelper 的扩展方法将其与 Lambda 表达式一起使用

public static string GetFullHtmlFieldName<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression)
{
return htmlHelper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(ExpressionHelper.GetExpressionText(expression));
}

使用方法是 (Html.GetFullHtmlFieldName(x => x.Name)

关于c# - 如何读取 html 帮助元素的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5514887/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com