Html.Label 和 Html.Display 之间有什么区别?

发布于 2024-10-19 06:37:22 字数 67 浏览 1 评论 0原文

Html.LabelHtml.Display 之间有什么区别?

What is the difference between Html.Label and Html.Display?

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

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

发布评论

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

评论(3

愛上了 2024-10-26 06:37:22

Html.Label() 呈现可用于模型实体属性的 HTML 标记

例如,一方面

<%= Html.Label("Full Name", Model.FullName) %>

会呈现

 <label for="FullName">Full Name </label>

Html.Display(),另一方面会根据指定的模板呈现整个实体的 HTML 标记。例如。如果您有一个具有多个属性的 Person 实体,您可以定义一个模板,其中包含有关如何呈现 Person 的标记,并且 Html.Display() 使用该模板跨视图呈现 Person 对象。 Phil Haack 有一篇关于显示模板的优秀帖子

Html.Label() renders HTML markup <label /> that can be used for a model entity's attrubute.

For eg,

<%= Html.Label("Full Name", Model.FullName) %>

would render

 <label for="FullName">Full Name </label>

Html.Display() on the other hand renders HTML markup for entire entity based on specified templates. For eg. if you have a Person entity with multiple attributes, you define a template with markup as to how to render a Person and Html.Display() uses that template to render Person objects across views. Phil Haack has an excellent post on display templates.

橙幽之幻 2024-10-26 06:37:22

Label

返回 HTML 标签元素并由指定表达式表示的属性的属性名称。

显示

返回每个属性的 HTML 标记在由字符串表达式表示的对象中。

Label

Returns an HTML label element and the property name of the property that is represented by the specified expression.

Display

Returns HTML markup for each property in the object that is represented by a string expression.

怂人 2024-10-26 06:37:22

Html.Display 更加动态,它根据正在呈现的属性的数据类型以及该属性是否使用某些属性进行标记来生成不同的 HTML 标记。该方法根据以下规则呈现标记:

如果属性的类型为基本类型(整数、字符串等),则该方法呈现表示属性值的字符串。

如果属性使用数据类型属性进行注释,则该属性指定为该属性生成的标记。例如,如果该属性使用 EmailAddress 属性进行标记,则该方法会生成包含使用 mailto 协议配置的 HTML 锚点的标记,如下例所示:

<a href='mailto:[email protected]'>[email protected]</a>

如果该对象包含多个属性,则该方法会为每个属性生成一个由属性名称和属性值的标记组成的字符串。

Html.Label 只是生成一个类似 Male 的 label 标签

Html.Display is more dynamic it generates different HTML markup depending on the data type of the property that is being rendered, and according to whether the property is marked with certain attributes. The method renders markup according to the following rules:

If the property is typed as a primitive type (integer, string, and so on), the method renders a string that represents the property value.

If a property is annotated with a data type attribute, the attribute specifies the markup that is generated for the property. For example, if the property is marked with the EmailAddress attribute, the method generates markup that contains an HTML anchor that is configured with the mailto protocol, as in the following example:

<a href='mailto:[email protected]'>[email protected]</a>

If the object contains multiple properties, for each property the method generates a string that consists of markup for the property name and for the property value.

Html.Label just generates a label tag like Male

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