数据字典使用

  1. 复制html代码
<select name="status" th:with="type=${@dict.getType('sys_normal_disable')}">
  <option value="">所有option>
  <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}">
  option>
select>

2.去字典管理查找字典类型并在add.html里面修改
数据字典使用_第1张图片

数据字典使用_第2张图片
3.最终修改为如下代码启动后台

<select name="stuSex" class="form-control m-b" th:with="type=${@dict.getType('sys_user_sex')}">
                        <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{stuSex}">option>
                    select>
  1. 最终效果
    数据字典使用_第3张图片

你可能感兴趣的:(intellij-idea)