需要什么<要求>和用于? 要求>
我正在研究自定义标记库,但我很困惑如何在 TLD 文件中使用
和
标记来定义自定义标记属性。
- 这些标签是什么?
- 我们应该在它们之间写什么?
- 写完这些标签后我们会得到什么行为?
I was working on custom tag libraries and I was confused how the <required>
and <rtexprvalue>
tags are used in the TLD file to define a custom tag attribute.
- What are these tags?
- What should we write in-between them?
- What behavior do we get after writing these tags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
required
非常简单地暗示了它所说的内容。该属性是必需的或强制的。rtexprvalue
表示运行时表达式值。这意味着该属性可以支持 scriptlet 值。elexprvalue
表示它可以支持 EL(表达式语言)值。因此,如果您将
requiredattr
定义为required=true
和rtexprvalue=true
并且elattribute
定义为 < code>elexprvalue=true,可以这样写:required
quite simply implies what it says. The attribute is required or mandatory.rtexprvalue
means Runtime Expression Value. It means the attribute can support scriptlet values.elexprvalue
means it can support EL (expression language) values.So, if you have
requiredattr
defined as bothrequired=true
andrtexprvalue=true
andelattribute
is defined aselexprvalue=true
, you can write as follows:TLD 中定义的
元素捕获属性的动态行为。这值可以是 true 或 false。动态列中的假值意味着
只能为该属性指定静态字符串值。真值意味着
可以指定请求时间属性值。正如 JSP 规范中所定义的,
“请求时属性值”可以是 Java 表达式、EL 表达式或
由
设置的值。
元素定义嵌套属性是必需的还是可选的。如果不存在,则默认值为“false”,即该属性是可选的。The
<rtexprvalue>
element defined in a TLD captures the dynamic behavior of an attribute. Thevalue can be either true or false. A false value in the dynamic column means that
only a static string value can be specified for the attribute. A true value means that a
request-time attribute value can be specified. As defined in the JSP specification, a
“request-time attribute value” can be either a Java expression, an EL expression, or a
value set by a
<jsp:attribute>
.The
<required>
element defines if the nesting attribute is required or optional. If not present then the default is "false", i.e the attribute is optional.