在 struts select 标签 <s:select> 中显示对象数组列表 List(Object[])

show a list of arrays of objects List(Object[]) in struts select tag <s:select>

<s:select label="Motif de la réclamation"
            name="motifBean.motifId"                      
            list="%{motifListBean}" listKey="motifId"  listValue="libelle" value="1">

    </s:select> 

我像上面那样使用 select 标签,但是当我不是键和值而是列表中的对象 [] 时,我不知道该怎么做

谢谢

好吧,没有答案。我将 Object[] 转换为 Map 并在 select 标签

中使用了地图