Thymeleaf

Thymeleaf枚舉html

enumthis

public enum JkCashBackEnumMode {

    SINGLE(2, "一次性給到到期日"),
    YEAR(4, "根據投資日按年"),
    CUSTOM(6, "自定義返現");

    private int code;
    private String text;

    JkCashBackEnumMode(int code, String text) {
        this.code = code;
        this.text = text;
    }

    public static JkCashBackEnumMode getModeByCode(int code) {
        for (JkCashBackEnumMode e : values()) {
            if (e.code == code)
                return e;
        }
        return null;
    }

    public int getCode() {
        return code;
    }

    public void setCode(int code) {
        this.code = code;
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }
}

htmlspa

            模式:
            <span class="select-box inline">
                <select th:name="mode" class="select" style="width: 150px;">
                    <option value="">所有</option>
                    <option th:each="enum:${T(com.jkinvest.constant.JkCashBackEnumMode).values()}" th:value="${enum.code}" th:text="${enum.text}"></option>
                </select>
            </span>
        <tbody>
            <tr class="text-c" th:each="model:${pageInfo?.list}">
                <td>
                    <span th:each="enum:${T(com.jkinvest.constant.JkCashBackEnumMode).values()}" th:if="${model.mode eq enum.code}" th:text="${enum.text}"></span>
                </td>
            </tr>
        </tbody>
相關文章
相關標籤/搜索