讓我們想象一下我有一個類 class Test < ActiveRecord::Base
include AuthenticatorHelper
def test
authenticate_or_fail!
puts "If I fail, this should be unreachable"
end
end
和 module Authe
只是想知道爲什麼這不起作用。 放置在單獨的方法中的JSON返回當我在控制器得到下面的錯誤: The controller must return a response (null given). Did you forget to add a return statement somewhere in your controller? (500 Internal Server Error)
的