Thymeleaf直接调用后台Service之${@serviceBean.doSomething()}

方法说明:
thymeleaf的官方文档中提到了${@myBean.doSomething()}可以访问容器中bean的数据。

前端thymeleaf写法:


        
<-- js定义变量 -->
var datas = [[${@dict.getType('sys_sex')}]];

拼接后台获取的数据 '__${ }__', 前后都是两个下划线 ,加单引号往后台传的时候是字符串,不加单引号往后台传的是数字, __${ }__


             
[[${type}]]

后台 Spring boot

/**
 * html调用 thymeleaf 实现字典读取
 */
@Service("dict")
public class DictService
{
    @Autowired
    private IDictDataService dictDataService;
 
    /**
     * 根据字典类型查询字典数据信息
     * 
     * @param dictType 字典类型
     * @return 参数键值
     */
    public List getType(String dictType)
    {
        return dictDataService.selectDictDataByType(dictType);
    }
 
    /**
     * 根据字典类型和字典键值查询字典数据信息
     * 
     * @param dictType 字典类型
     * @param dictValue 字典键值
     * @return 字典标签
     */
    public String getLabel(String dictType, String dictValue)
    {
        return dictDataService.selectDictLabel(dictType, dictValue);
    }
}

你可能感兴趣的:(Thymeleaf,Java)