当前位置: 首页 > 工具软件 > session.js > 使用案例 >

ssm:后台跳转页面,使用session.setAttribute(key,value)传值到前台,使用js获取值

宗政斌
2023-12-01

后台返回值:



 @GetMapping("/flight/{flight}/{deptime}")
    public Object toFlightList(@PathVariable String flight,@PathVariable String deptime, HttpSession session){
        session.setAttribute(key,value)
        return "user/booking/flight_list";
    }

 前台flight_list.jsp页面:(PS:放在js文件里会识别不了)

<script type="text/javascript">
    console.log("参数",'${key}');
</script>

 

 类似资料: