两种 EL 语法有什么区别?
我想让 JSP 表单中的表单字段稳定,所以我使用:
${param.fieldName}
我尝试这样做:
${param["fieldame"]}
并且也有效!
有人能告诉我有什么区别吗?
I want to make form fields stable in JSP forms so I use:
${param.fieldName}
I tried to make like this:
${param["fieldame"]}
and also works!
Can someone tell me what is the difference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从表达式语言规范版本 2.2 维护版本开始:
From Expression Language Specification Version 2.2 Maintenance Release:
在
param["fieldName"]
中,引号之间可以有任何(有效)字符串。在 param.fieldName 中你不能有这个,因为它只能包含对标识符有效的字符。在这两种情况下,它都映射到查找。什么样的查找取决于“param”解析为什么类型。
In the
param["fieldName"]
you can have any (valid) string between the quotes. In the param.fieldName you cannot have that, as it can only contain the characters that are valid for an identifier.In both cases it maps to a lookup. What kind of lookup depends on what type "param" resolves to.