5

如果不满足某些条件,我正在向控制器操作发送 javascript 请求以尝试重定向到另一个 html 页面。在浏览了几个问题后,这就是我想出的:

def twittertweet
  if current_user && current_user.twitter_token
    ....
  else
    flash[:notice] = "You must be registered with Twitter to do that."
    respond_to do |format|
      format.js { render(:update) { |page| page.redirect_to authentications_url } }
    end
  end
end

我想重定向到 authentications_url。然而,这就是发生的事情:

Started POST "/twittertweet.json" for 127.0.0.1 at 2012-04-11 13:38:27 -0400
  Processing by ItemsController#twittertweet as */*
  Parameters: {"id"=>"22"}
  Category Load (0.3ms)  SELECT "categories".* FROM "categories" 
Rendered items/update.html.erb within layouts/application (0.0ms)
Completed 200 OK in 112ms (Views: 79.9ms | ActiveRecord: 5.7ms)

如您所见,它甚至没有尝试重定向到 authentications_url。然而,我知道“else”声明已经到达(我已经放置了 puts 声明来帮助我找出答案)。

有什么解决方法吗?

更新 如果您尝试 DanS 的解决方案,则会出现 MissingTemplateError。它仍在尝试重定向到项目#update:

ActionView::MissingTemplate (Missing template items/update, application/update with {:handlers=>[:erb, :builder, :coffee], :formats=>[:json], :locale=>[:en, :en]}. Searched in:
  * "/Users/dylandrop/Documents/givespend/app/views"
  * "/Users/dylandrop/.rvm/gems/ruby-1.9.2-p290/gems/devise-2.0.4/app/views"
):    
4

1 回答 1

12

我猜你是twittertweet通过ajax调用的。然后通过 javasctipt 代码响应它:

format.js { render :js => "window.location.href = '#{some_path}'" }
于 2012-04-11T18:10:18.267 回答