2014-10-03 82 views

回答

0

一旦您的模型中的bookList針對您的GSP,這樣做是微不足道的。

假設一個控制器的動作是這樣的:

class MyController { 
    def index() { 
    def bookList = Book.getAll() 
    render(view: 'index', model: [bookList: bookList]) 
    } 
} 

和域這樣的:

class Book { 
    String title 
} 

您可以使用g:select標籤在你的GSP這樣使它:

<g:select from="${bookList}" optionKey="id" optionValue="title" />