跳至内容 跳至搜索

当嵌套的 respond_to 被触发且每个的 content type 不兼容时引发。例如

respond_to do |outer_type|
  outer_type.js do
    respond_to do |inner_type|
      inner_type.html { render body: "HTML" }
    end
  end
end
方法
N

常量

DEFAULT_MESSAGE = "respond_to 被多次调用,并在该操作中匹配了冲突的格式。请注意,您只能在每个操作中调用一次 respond_to 并匹配单个格式。"
 

类公共方法

new(message = nil)

# File actionpack/lib/action_controller/metal/exceptions.rb, line 91
def initialize(message = nil)
  super(message || DEFAULT_MESSAGE)
end