2
我使用g選擇標籤:選擇標籤這樣使用默認值:Grails的
<g:select id="ua_selectedResource" style="width:100px;font-size: 9px" from='${resourcesList}' value="" optionKey="id" optionValue="resourceName" noSelection="['null':'Select a Resource']">
</g:select>
resourceList是資源對象的列表(帶有字段ID,資源名稱...等),我想默認選擇的值是id爲'1'的資源。如何在value屬性中設置該條件?