当format = json时,respond_with重定向

时间:2011-04-02 22:31:04

标签: json ruby-on-rails-3 routing respond-with

我在控制器中遇到了一种奇怪的行为。他们似乎偶尔想要重定向而不是呈现json响应。

respond_to :json, :html, :js

def create
  @favorite = current_user.favorites.build(:location_id=>params[:location_id])
  if @favorite.save
    respond_with(@favorite)
  else
    respond_with(@favorite.errors)
  end
end

我认为它大部分时间都有效,但今天我收到了这个错误的通知:

NoMethodError:#< FavoritesController:0x00000006171dc0>

的未定义方法`favorite_url'

params hash记录为:

{"format"=>"json",
 "action"=>"create",
 "user_id"=>"56",
 "auth_token"=>"iGSty8CMIaWsbShYZEtw",
 "location_id"=>"47943",
 "controller"=>"favorites"}

特别奇怪,因为它似乎大部分时间都在工作......我已经改变了一些其他控制器来使用旧格式.json {render:json => @object}语法,但如果可能,我想避免这种情况。

怎么会这样?

1 个答案:

答案 0 :(得分:3)

在非GET的路径上,respond_with尝试重定向到网址,无论它是什么。您可以使用自定义响应程序

覆盖它