我正在尝试制作自定义编辑页面。我抓住对象ID并创建对象的实例。但是当我尝试为选择框指定一个值时,该框呈现为多重选择。我需要它默认为基于孩子的选择,但只能是单选。我试过多次=“假”,但我的程序只是忽略它。
我的对象是一个包含与每个样本关联的参数(子)的示例。我有一个算法,可以抓取每个参数并构建每个唯一名称,值和信息的列表。有些样本只有参数值,没有信息,因此它们会进入一个地图,而有值和信息的样本会进入另一个地图。
这是算法和我的行动:
def updateSample = {
def sid = params.sample.id // get the id of the sample object
def sampleInstance = Sample.get(sid)// creates instance
def children = sampleInstance?.sampleParameters
/* ------ gets a list of unique parameter names ------*/
HashMap<String, ArrayList<SampleParameter>> oldMap = new HashMap<String, ArrayList<SampleParameter>>(); // for single parameter options
HashMap<String, HashMap<String, ArrayList<SampleParameter>>> map = new HashMap<String, HashMap<String, ArrayList<SampleParameter>>>(); // for multiple parameter options
for (def result : SampleType.get(sampleInstance.sampleType.id).sampleParameters.sort {it.value}) { // only iterate over assigned sample paramters
if (result.information != null) { // we are working with 3 parameters
if (!map.containsKey(result.name)) { // if map does not already contain the key
map.put(result.name, new HashMap<String, ArrayList<SampleParameter>>()); //add the name and a map to hold the values from the table's information column
}
if (!map.get(result.name).containsKey(result.value)) {
map.get(result.name).put(result.value, new ArrayList<SampleParameter>());
}
map.get(result.name).get(result.value).add(result);
} else {// otherwise we are only working with two parameters
if (!oldMap.containsKey(result.name)) { // if the name does not already exist in oldMap, add it
oldMap.put(result.name, new ArrayList<SampleParameter>()); // holds values
}
oldMap.get(result.name).add(result); //adds value to the list
}
}
/* invokes template and passes a map to be rendered inside of <div id="parameter"> in sample.gsp */
render(template:'updatesample' , model:[sid:sid,sampleInstance:sampleInstance,children:children,
oldMap:oldMap, map:map])
}
如果我没有指定值,列表就可以正常构建。但是当我指定一个值时,突出显示正确的值,但该框是多选的。
这是我在gsp上呈现的模板代码;
<g:each in="${oldMap?.sort()}">
<tr>
<td align="right" valign="top"><b>${it.getKey()}:</b></td>
<td><g:select optionKey="id" optionValue="value" name="sampleParameters" id="parameter" value="${sampleInstance?.sampleParameters}" from='${it.getValue()}' /></td>
</tr>
</g:each>
<g:each var="valueMap" in="${map?.sort()}">
<tr><td align="right" valign="top"><b>${valueMap.getKey()}:</b></td></tr>
<g:each var="infoMap" in="${valueMap?.getValue()?.sort()}">
<tr>
<td align="right" valign="top">${infoMap.getKey()}:</td>
<td><g:select multiple ="false" noSelection="${['':'Select One...']}"optionKey="id" optionValue="information" name="sampleParameters" id="parameter" value="${sampleInstance?.sampleParameters}" from="${infoMap?.getValue()?.sort(){it.information}}" /></td>
</tr>
</g:each>
</g:each>
答案 0 :(得分:2)
sampleInstance?.sampleParameters
会返回Collection
个对象,因此,如果Grails在Collection
属性中检测到value
并且尚未设置multiple
属性,它会为您设置multiple
属性。因此,将您的选择渲染为多选。
设置multiple="false"
无济于事,因为Grails只允许该属性直接传递,因此您获得<select multiple="false" ...>
标记,并且该属性的存在可能会导致浏览器将其呈现为多个-select。
尝试仅将sampleParameters
中的单个实例作为value
属性传入,以便拥有一个选择字段。