python222网站实战(SpringBoot+SpringSecurity+MybatisPlus+thymeleaf+layui)-帖子详情页实现

锋哥原创的Springboot+Layui python222网站实战:

python222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )_哔哩哔哩_bilibilipython222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )共计23条视频,包括:python222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )、第2讲 架构搭建实现、第3讲 页面系统属性动态化设计实现等,UP主更多精彩视频,请关注UP账号。icon-default.png?t=N7T8https://www.bilibili.com/video/BV1yX4y1a7qM/后端:

/**
 * 根据id查询帖子详细信息
 * @param id
 * @return
 * @throws Exception
 */
@RequestMapping("/{id}")
public ModelAndView view(@PathVariable("id")Integer id)throws Exception{
    Article article = articleService.getById(id);
    if(article!=null && article.getStatus()!=2){
        return null;
    }else{
        ModelAndView mav=new ModelAndView();
        mav.setViewName("article");
        mav.addObject("article",article);
        return mav;
    }
}

前端article.html

















    

热门帖子推荐

热门标签推荐

你可能感兴趣的:(java,spring,boot,layui,java)