?? list.gsp
字號:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="layout" content="main" /> <title>User List</title> </head> <body> <div class="nav"> <span class="menuButton"><a href="${createLinkTo(dir:'')}">Home</a></span> <span class="menuButton"><g:link action="create">New User</g:link></span> <g:render template="/adminmenubar" /> </div> <div class="body"> <h1>User List</h1> <g:if test="${flash.message}"> <div class="message"> ${flash.message} </div> </g:if> <table> <tr> <th>Id</th> <th>User Id</th> <th>Password</th> <th></th> </tr> <g:each in="${userList}"> <tr> <td>${it.id}</td> <td>${it.userId}</td> <td>${it.password}</td> <td class="actionButtons"> <span class="actionButton"><g:link action="show" id="${it.id}">Show</g:link></span> </td> </tr> </g:each> </table> <div class="paginateButtons"> <g:paginate total="${User.count()}" /> </div> </div> </body></html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -