后端返回html页面信息不跳转页面
controller内容如下
@RequestMapping(value = "/login") public String login(String username, String password, Model model)
{
System.out.println(username+"------"+password);
model.addAttribute("usernaem",username);
return "test";
}
页面如下
<!DOCTYPE html><html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8"/>
</head>
<body>
<p th:text="${usernaem}"></p>
</body>
</html>
这是我的目录结构
当前端向后端请求后 返回的是HTML信息 没有跳转到页面?
回答:
ajax 不会默认跳转。
form 表单提交才会。
以上是 后端返回html页面信息不跳转页面 的全部内容, 来源链接: utcz.com/p/944413.html