Rails 这两种中断 redirect_to 的方式有区别吗

zouyu · May 11, 2018 · Last by msg7086 replied at May 15, 2018 · 1508 hits

redirect_to root_url and return 

return redirect_to root_url

没有区别

redirect_to root_url
return

和上面两种也是等价的

木有区别(其实我回复是为了加深印象)

一般是为了省函数,再加上英语读起来比较顺口。

if whatever?
  redirect_to root_url
  return
end

vs

redirect_to root_url and return if whatever?
You need to Sign in before reply, if you don't have an account, please Sign up first.