我有一个admin命名空间和Admin :: UserController控制器.当我尝试使用名为admin with symbol的布局时,rails会抛出异常,但是如果我将布局管理员称为字符串,则可以使用sucessfull.
异常消息如下:
您指定nil作为布局,但未找到此类方法
我只是想知道为什么会发生这种情况……
谢谢.
解决方法
按照这里:
http://ap.rubyonrails.org/classes/ActionController/Layout/ClassMethods.html
Sometimes you want to alternate
layouts depending on runtime
information,such as whether someone
is logged in or not. This can be done
either by specifying a method
reference as a symbol or using an
inline method (as a proc).