嵌套的 respond_to 觸發時,若各項內容類型不符時產生。例如
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