排序成功后跳转的页面显示“无法加载控制器:Undefined”?
来源:5-8 排序功能实现
hourenlu
2016-10-18
public function listorder()
{
$listorder = I('post.listorder');
$jumpUrl = I('server.HTTP_REFERER');
// dump($jumpUrl);exit;
$errors = array();
// dump($listorder);die;
if($listorder){
try{
foreach($listorder as $menuId => $value){
//执行更新
$id = D('Menu')->updateMenuListorderById($menuId,$value);
if($id === false){
$errors[] = $menuId;
}
}
}catch(Exception $e){
return show(0,$e->getMessage(),array('jumpurl'=>$jumpUrl));
}
if($errors){
return show(0,'排序失败-'.implode(',',$errors),array('jumpurl'=>$jumpUrl));
}
return show(1,'排序成功',array('jumpurl'=>$jumpUrl));
}
return show(0,'排序数据失败-'.implode(',',$errors),array('jumpurl'=>$jumpUrl));
}
2回答
-
singwa
2016-10-18
把你的跳转地址打印出来看看 输出什么
00 -
hourenlu
提问者
2016-10-18
http://www.sing.com/Admin/undefined
00
相似问题