老师,id为null
来源:6-9 店铺管理页面的前端开发
快看喵
2018-05-15
学完第六章后,shoplist能显示,昨天可以跳到shopmanagement,但是地址栏的shopId 是null,今天干脆跳不到shopmanagement 页面了,闪回到shoplist,
写回答
2回答
-
你看这里的js
shopmanagement.js
$(function() { var shopId = getQueryString('shopId'); var shopInfoUrl = '/o2o/shopadmin/getshopmanagementinfo?shopId=' + shopId; $.getJSON(shopInfoUrl, function(data) { if (data.redirect) { window.location.href = data.url; } else { if (data.shopId != undefined && data.shopId != null) { shopId = data.shopId; } $('#shopInfo') .attr('href', '/o2o/shopadmin/shopoperation?shopId=' + shopId); } }); });
获取的是店铺列表页点击后传递过来的选中的当前shopId并传递给后台,后台取到shopId后设置到session里面 下次刷新页面后Session里面已经有shopId存在currentShop里面了,直接取来用就好了。同学你可以看看我的代码格式化后很容易看
022018-05-15 -
快看喵
提问者
2018-05-15
我的modelMap里面的shopId全部为null,为什么放不进去呢
042018-05-15
相似问题