Js和Thymeleaf如何获取model中的值

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

简述

在大多数的项目架构中,使用SPringBoot发布微服务,前端采用Thymeleaf作为Html模版,使用Jquery作为动态脚本,那么Thymeleaf和Jquery是如何获取Model中的数据呢?

Jquery获取Model中的数据

方法1:将model中的值赋给hidden,然后Js获取隐藏域的值。

后台的实现:

@RequestMapping("/QEditorMod1")
    public String QEditorMod1(ModelMap model){
        model.addAttribute("staff_name","cxx" );
        return "questionEditorTemplate/QEditorMod1";
    }

前端值的获取

//将值赋给hidden域

//Js 获取hidden的隐藏域
var staff_name2=$("#staff_name2").val();

Thymeleaf 获取model中的值

2、访问model中的数据

//通过“${}”访问model中的属性

3、在javascript中访问model 目前没有发现此种方法的应用场景


转载于:https://my.oschina.net/u/3421984/blog/1604188

你可能感兴趣的:(Js和Thymeleaf如何获取model中的值)