我有一个这样的枚举:
public enum UnitTypes {
LITER("l"), KILO("kg"), PIECE("pc");
private String unitType;
UnitTypes(String type) {
this.unitType = unitType;
}
String getType() {
return unitType;
}
}
如何在视图上显示getType方法中的单个值?
我试试这个,但它不起作用:
<td th:text="${stock.unit.getType()}"></td>
在“stock”中我有字段,这是枚举类型(“单位”)
答案 0 :(得分:0)
UnitTypes(String type) {
this.unitType = unitType;
}
此代码应为
UnitTypes(String type) {
this.unitType = type;
}
您正在原始代码中为自己分配unitType。