th:field在输入字段中将默认值设置为0

时间:2019-02-17 22:43:54

标签: spring-boot thymeleaf

标题中提到了我的问题。
输入字段的类型为数字
th:字段引用数据库中的 int 属性。
我希望我的占位符可见,而不是默认的 0 值。

<input id="courseCredits"  name="courseCredits" th:field="*{courseCredits}" class="form-control" placeholder="Course Credits" type="number" min="0" required autofocus/>

2 个答案:

答案 0 :(得分:0)

如果您不想使用默认值0,则不能使用while True。取而代之的是将intInteger一起使用。

答案 1 :(得分:0)

将实体类中的“int”更改为“Integer”。