Apache 速度 $ vs $!{}
对于 apache 速度,使用 $ 与 $!{} 访问变量之间有区别吗?如果是的话,那是什么?
For apache velocity, is there a difference between accessing variables with $ vs. $!{}. If so, what is it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两个区别,第二个是正式 和安静。
正式的引用符号包括变量周围的大括号。安静表示法包括
!
,表示如果引用不存在则不输出任何内容。当组合它们时,您创建了一个正式而安静的符号。There's two differences, the second is formal and quiet.
Formal reference notations include the braces around the variable. The quiet notation includes the
!
and means to output nothing if the reference does not exist. When combining them, you create a formal and quiet notation.