(Quick Reference)

while

目的
Purpose

Executes a condition in a loop until the condition returns false

使用例
Examples

<g:while test="${i < 5}">
    <%i++%>
    <p>Current i = ${i}</p>
</g:while>

詳細
Description

属性

Attributes
  • test - The conditional expression