在function方法中取session的值,为什么js会失效,提示找不到按钮

var code = request.getSession.getAttribute("code");

我在js的方法中加了这句话,想获取后台传来的code,然后引入的js就都失效了,注掉之后就可以正常运行
求大神解答。

public String mailcode(String mail,HttpServletRequest request) throws Exception{

        RegisterPojo registerPojo = registerService.findBymail(mail);

        if(registerPojo == null){

            //生成四位随机数字

            Random random = new Random();

            int code = random.nextInt(9999-1000+1)+100;

            String mailcode = String.valueOf(code);

            Main.main(mail, mailcode);

            HttpSession session = request.getSession();

            session.setAttribute("code", mailcode);

             return mailcode;

        }

            return "";

            

    }


天涯尽头无女友
浏览 808回答 1
1回答

墨色风雨

需要看看你的报错信息
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript