redirect_to out of iframe

bre*_*ter 2 javascript iframe ruby-on-rails

我有一个rails应用程序,它有一个在iframe中呈现的表单,并且我想从iframe中创建动作redirect_to并重新呈现整个页面而不是iframe.

我很好奇有什么想法可以实现这一目标.

Ser*_*zco 6

你能行的!你必须用以下内容替换redirect_to:

render :text => "<script>parent.location.href='/cms';</script>"
Run Code Online (Sandbox Code Playgroud)