本文介绍了Struts 2 - %{}表示法的用法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Struts 2中%{}
表示法的确切用法是什么?有人可以解释一个简单的例子,当使用%{}
时代码可以工作,并且当它没有被使用时不起作用吗?
What is the exact use of %{}
notation in Struts 2? Can someone explain with a simple example where the code works when %{}
is used and does not works when its not used?
推荐答案
在OGNL中用于强制评估括号中的内容为OGNL表达式。例如
Used in OGNL to force evaluate the content in brackets as OGNL expression. For example
<s:iterator value = "myAnswers" status="stat">
<s:textfield name = "myAnswers[%{#stat.index}].name"/>
评估 stat.index
应该是被迫的。
这篇关于Struts 2 - %{}表示法的用法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!