我有一些我正在修改的继承代码.但是,我看到一些奇怪的东西(对我来说).
我看到一些像这样的代码:
::User.find_by_email(params[:user][:email]).update_attributes(:mag => 1)
我从未见过这样的东西(我是Ruby on Rails的新手).这是做什么的,为什么我的User.find_by_email(params [:user] [:email]).update_attributes(:mag => 1)不起作用?该错误说明了User常量.
如果有帮助,我正在使用Rails 2.3.5.
@H_301_10@解决方法
::是一个范围解析运算符,它实际上意味着“在命名空间中”,所以ActiveRecord :: Base意味着“Base,在ActiveRecord的命名空间中”
在任何名称空间之外解析的常量意味着它听起来完全是什么 – 根本不在任何名称空间中的常量.
它用于代码可能不明确的地方:
module Document class Table # Represents a data table def setup Table # Refers to the Document::Table class ::Table # Refers to the furniture class end end end class Table # Represents furniture end@H_301_10@ @H_301_10@ 原文链接:https://www.f2er.com/ruby/274317.html