gpt4 book ai didi

Springboot如何使用Map将错误提示输出到页面

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Springboot如何使用Map将错误提示输出到页面由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

主要思路:在controller层我们将错误信息put进map中,然后通过视图解析器跳转到目标页面,在目标页面中在通过指定标签内的th:text将错误消息取出.

例:

1.编写controller代码 。

?
1
2
3
4
5
6
7
8
9
10
11
12
@PostMapping ( "/user/login" )
   public String login( @RequestParam ( "username" ) String username,
             @RequestParam ( "password" ) String password,
             Map<String,Object> map
   ){
     if (!StringUtils.isEmpty(username) && "123456" .equals(password)){
       return "dashboard" ;
     } else {
       map.put( "msg" , "用户名或密码错误" );
       return "login" ;
     }
   }

代码解读:

@PostMapping("/user/login")等价于@RequestMapping(value ="/user/login" ,method = RequestMethod.POST) 。

2.到目标html页面取出错误提示信息 。

<p style="color: red" th:text="${msg}" th:if="${not #strings.isEmpty(msg)}"></p> 。

代码解读:

1.th:if 的优先级比 th:text高,所以会先执行th:if中的判断逻辑,只有th:if中的逻辑为true时才会显示th:text中的内容.

2.strings是thymeleaf的内置对象,可以对字符串内容进行操作.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://www.cnblogs.com/bear7/p/13473135.html 。

最后此篇关于Springboot如何使用Map将错误提示输出到页面的文章就讲到这里了,如果你想了解更多关于Springboot如何使用Map将错误提示输出到页面的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com