单选按钮标签更改

时间:2018-03-03 10:16:41

标签: java spring-mvc spring-boot thymeleaf

我需要将单选按钮标签从实际值更改为另一个值

<li th:each="radioValueType: ${type}"><input type="radio"
                                th:field="*{heads[0].type}" th:value="${radioValueType}" /> 
                                <label th:text="${radioValueType}"></label></li>

下面是我的模型属性

    @ModelAttribute("type")
    public ArrayList<Integer> getType(){
         ArrayList <Integer> type = new ArrayList<Integer>();
         type.add(1);
         type.add(5); 
         return type;
    }

但是当我需要展示它时,我需要将它作为单个&#39;单个&#39;作为&#39; group&#39;。我对thymeleaf

完全不熟悉

1 个答案:

答案 0 :(得分:0)

最后3小时后发现下面的解决方案是代码

<li th:each="radioValueType: ${type}"><input type="radio"
                            th:field="*{heads[0].type}" th:value="${radioValueType}" /> 
                            <label th:text="( (${radioValueType} == 1)? 'Single' : 'Group')"></label></li>

如果有人遇到同样的麻烦