📄 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 + -