请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

html页面无内容

图片描述
商品管理页面加载不出来,我就重新建了一个页面试了一下
图片描述
但是hello也不显示…跟一张图一样的界面…

正在回答

4回答

翔仔 2020-06-01 16:27:34

同学你相关的路由创建了么?不可能有这么奇怪的问题,肯定还是哪里配置错了

0 回复 有任何疑惑可以回复我~
  • 提问者 我总是那么的乖 #1
    是拦截器的问题
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
    			throws Exception {
    		// 从session中获取当前选择的店铺
    		Shop currentShop = (Shop) request.getSession().getAttribute("currentShop");
    		@SuppressWarnings("unchecked")
    		// 从session中获取当前用户可操作的店铺列表
    		List<Shop> shopList = (List<Shop>) request.getSession().getAttribute("shopList");
    		// 非空判断
    		if (currentShop != null && shopList != null) {
    			// 遍历可操作的店铺列表
    			for (Shop shop : shopList) {
    				// 如果当前店铺在可操作的列表里则返回true,进行接下来的用户操作
    				if (shop.getShopId() == currentShop.getShopId()) {
    					return true;
    				}
    			}
    		}
    		// 若不满足拦截器的验证则返回false,终止用户操作的执行
    		return false;
    return的是false
    回复 有任何疑惑可以回复我~ 2020-06-01 22:05:15
提问者 我总是那么的乖 2020-06-04 16:54:20

https://img1.sycdn.imooc.com//szimg/5ed8b6ac09d9a0bd07910464.jpg

单独输出都是602

0 回复 有任何疑惑可以回复我~
提问者 我总是那么的乖 2020-06-02 21:53:27

https://img1.sycdn.imooc.com//szimg/5ed65982097e53c804570198.jpg

https://img1.sycdn.imooc.com//szimg/5ed65982098a977503970192.jpg

这个我inspect的俩部分,都是602...但是整体就是false。。。


0 回复 有任何疑惑可以回复我~
  • 翔仔 #1
    system.out.println(currentShop.getShopId() == shop.getShopId()) 看看
    回复 有任何疑惑可以回复我~ 2020-06-03 15:58:23
  • 提问者 我总是那么的乖 回复 翔仔 #2
    System.out.println(currentShop.getShopId() == shop.getShopId());
    返回的是false
    回复 有任何疑惑可以回复我~ 2020-06-03 22:42:21
  • 翔仔 回复 提问者 我总是那么的乖 #3
    单独输出 System.out.println(currentShop.getShopId())
    System.out.println(shop.getShopId())
    试试?
    回复 有任何疑惑可以回复我~ 2020-06-04 12:20:48
提问者 我总是那么的乖 2020-06-01 22:07:00

https://img1.sycdn.imooc.com//szimg/5ed50b5a099f897e04760198.jpg

https://img1.sycdn.imooc.com/szimg/5ed50b5a09583d8c03560161.jpg

两个id的值都是602,为什么会返回false呢


0 回复 有任何疑惑可以回复我~
  • 翔仔 #1
    不可能的,如果代码执行到
    if判断,并且值相等肯定是true,也可以单独抠出来写个demo试试
    回复 有任何疑惑可以回复我~ 2020-06-02 18:05:56
  • 提问者 我总是那么的乖 回复 翔仔 #2
    我的截图发上面了
    回复 有任何疑惑可以回复我~ 2020-06-03 09:30:55
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信