草庐IT

redirections

全部标签

ruby - rails 3 redirect_to 将参数传递给命名路由

我没有找到太多关于如何执行此操作的信息,尽管有很多关于如何使用像这样的redirect_to将参数传递给重定向的建议:action=>'something',:controller=>'something'在我的应用程序中,我在路由文件中有以下内容match'profile'=>'User#show'我的表演Action是这样的defshow@user=User.find(params[:user])@title=@user.first_nameend重定向发生在同一个用户Controller中,就像这样defregister@title="Registration"@user=Use

ruby-on-rails - Rails 3 - 过滤器链暂停为 :authentication rendered or redirected

我仍然收到标题中的“错误”消息,但不知道如何解决。在ApplicationController中,classApplicationController在routes.rb#match'set_activity_account/:id/:value'=>'users#account_activity',:as=>:set_activity_account--thisdoesn'tworkaswell..resources:usersdomemberdoget:action_a,:action_bendcollectiondoget'account_activity'endend和User

ruby-on-rails - rails : Pass Parameters to New Controller during 'redirect_to'

我正在使用RyanBates的RailsCastonWickedWizardForms创建一个多步骤表单。我没有定义current_user方法(不使用身份验证gem)-因此,我试图在redirect_to期间传递user.id参数-不幸的是,我似乎无法让它工作。任何帮助表示赞赏!我的用户Controller创建方法defcreate@user=User.new(params[:user])respond_todo|format|if@user.saveformat.html{redirect_tocontroller:'user_steps',id:'user.id'}#format

ruby-on-rails - Rails 中的 Post Redirect Get 模式

如何在Rails中实现PRG?我在Rails中使用了PRG,但我并不完全相信它是正确的。我想知道在Rails中是否有更好的方法来处理它? 最佳答案 我不知道PRG模式有多流行以及为什么人们必须虔诚地坚持它的失败方面的“重定向”(实际上,一个很好的理由是有时你不想处理“设置”的复杂性制造失败并保持干燥)。您基本上需要的是将:user的参数传输到new。我认为上面@Hitesh的解决方案非常接近。classUsersController:newendendend 关于ruby-on-rail

ruby-on-rails - 带有 redirect_to 的 Flash 通知在 rails 中被破坏

我已更新到Rails2.3.10、Rack1.2.1,现在我的所有即时消息都没有显示。我发现在重定向期间,通知是这样传递的redirect_to(@user,:notice=>"Sorrytherewasanerror")在我看来闪存哈希是空的!map:ActionController::Flash::FlashHash{}但是您可以在Controller中看到该消息。是什么原因?session{:home_zip=>"94108",:session_id=>"xxx",:flash=>{:notice=>"Sorrytherewasanerror"},:user_credential

ruby-on-rails - ruby rails : redirect_to not working after create and save

我想在用户提交电子邮件后redirect_toslider_path。当前,仅显示成功消息而没有重定向。这是代码:classSplash::SubscribersController{:success=>success,:message=>message}.to_json}endendend 最佳答案 只需替换这部分代码:ifsuccessflash[:success]=messageredirect_toslider_pathelseflash[:error]=messageendredirect_toroot_path用这个:i

ruby-on-rails - redirect_to 自定义 http header

在我当前的项目中,在为http基本身份验证重定向时需要设置自定义httpheader变量。我可以为自定义header指示redirect_to吗?谢谢。 最佳答案 Rails允许您在重定向时添加自定义header。在Railsguides中进行了讨论.10.2.1SettingCustomHeadersIfyouwanttosetcustomheadersforaresponsethenresponse.headersistheplacetodoit.Theheadersattributeisahashwhichmapsheader

ruby-on-rails - 关于将实例变量传递给 redirect_to 方法的困惑。正如 Rails 指南中所见

我正在研究ruby​​onrails指南,即http://guides.rubyonrails.org/layouts_and_rendering.html上的“布局和渲染”主题我对将实例变量传递给redirect_to方法感到困惑。这怎么可能?我认为redirect_to与重定向到另一个网页或url相关。在指南中给出的示例中,它说了以下内容:2.2.2RenderinganAction’sViewIfyouwanttorendertheviewthatcorrespondstoadifferentactionwithinthesametemplate,youcanuserenderw

ruby-on-rails - OAuth2::Error,invalid_request:redirect_uri 与应用程序配置不匹配

我正在开发一个使用BungieOAuth使用thisgem进行身份验证的Rails应用程序.我在initializers/devise.rb中的配置如下:config.omniauth:bungie,ENV['CLIENT_ID'],ENV['CLIENT_SECRET'],ENV['X_API_KEY'],ENV['REDIRECT_URL']Bungie的开发人员门户需要使用HTTPS的重定向URL,因此我将我的应用程序推送到Heroku并使用了aredirect强制身份验证返回本地主机进行测试。使用这种方法,一切正常。但是,当我将应用程序推向生产环境时,Bungie对我的应用程序

ruby - Sinatra中 `redirect`和 `redirect to`的区别

在Sinatra中使用redirect和redirectto有什么区别?他们似乎都默认为相同的状态代码。to'/url'位是否只是为了使方法更具可读性的一些语法上的好处? 最佳答案 redirect方法发送HTTPheader以将客户端重定向到给定的URL,传递的参数应该是带有主机的完全限定URL(例如http://example.com/path,而不仅仅是/path)。to方法将路径转换为​​Sinatra应用程序的完整URL,允许在redirect中使用生成的URL。例如。to('/path')将变为http://yoursi