Last updated by admin 4 years ago
?? - while
?? Description
Executes a condition in a loop until the condition returns false
???false?????????????????????
????? Parameters
- test - ??? The conditional expression
? Examples
<g:while test="${i < 5}">
<%i++%>
<p>Current i = ${i}</p>
</g:while>