在商店管理界面(路由是http://localhost:8080/o2o/shopadmin/shopmanagement?shopId=1),点击商铺信息为什么进入了注册页面(路由是http://localhost:8080/o2o/shopadmin/shopoperation)
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);
}
});
});
SSM商铺V1.0,解决毕设痛点;SpringBoot商铺V2.0,满足工作刚需
了解课程