现在的位置: 首页 > 综合 > 正文

Grails – A previous call to redirect(..) has already redirected

2013年05月08日 ⁄ 综合 ⁄ 共 195字 ⁄ 字号 评论关闭

Check the login controller it seems like your are not returning from action after redirect. for eg :

if(some condition){
 redirect ()
 return  // should return from here. to finish the action. other wise rest of code will be executed
}

抱歉!评论已关闭.