如何通过单击 grails(.GroovyServerPages 页面)中的按钮从 Mysql 数据库中获取 table 的所有 values/rows?

How can i get all the values/rows of a table from Mysql database by clicking on a button in grails (.GroovyServerPages page)?

如何将 table 中所有行的所有数据从 MySQL 数据库中获取到我的 Groovy 服务器页面 (GSP) 页面中? 已尝试获取列表但未成功。

def list(){
    def student1 = Student.getAll(1,2,3)
    [student:student1]
}
def list(){
    [students: Student.list()]
}

在你的 list.gsp

<ul>
<g:each in="${students}" var="student">
    <li>${student.id}</li> <!-- or other property -->
</g:each>
<ul>
def list()
{
 def Student= Student.getAll()
[students:Student]
}

并且在您的 gsp 中,您可以遍历此对象以获取所有记录,如上文 "quindimildev" 所述