Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您看到类似“未初始化的常量 User::Nil”之类的错误时,这是什么意思?
我认为这与我的授权模型与用户模型连接有关...我正在通过 FB 设置登录。
听起来你在nil某个地方错误地大写了。
nil
class Foo def bar Nil end end Foo.new.bar # => NameError: uninitialized constant Foo::Nil