使用thymeleaf

时间:2017-07-27 21:42:13

标签: spring-mvc spring-boot input enums thymeleaf

我想使用Enum的值填充隐藏的表单输入:

枚举:

public enum TipoEndereco {
    Residencial, Comercial
}

总结html代码,我试图使用这样的表单输入:

<input type="hidden" th:field="*{endereco[0].tipoEndereco}" th:value="Residencial"/>

但不幸的是,这个字段被记录为null。其他以这种方式不使用Enum的字段正在记录正常。我已经使用Enum填充选项,但直接作为输入类型隐藏不起作用。我使用百里香。

0 个答案:

没有答案