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 ""; }
添加回答
举报
0/150
提交
取消