当嵌套的 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) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_controller/metal/exceptions.rb, line 91 def initialize(message = nil) super(message || DEFAULT_MESSAGE) end