所以我很感兴趣是否有办法将字符串转换为活动记录类。
示例:我有一个User
继承自ActiveRecord::Base
. 有什么方法可以将字符串转换"User"
为User
类,以便我可以使用ActiveRecord
诸如find
,where
等方法。
所以我很感兴趣是否有办法将字符串转换为活动记录类。
示例:我有一个User
继承自ActiveRecord::Base
. 有什么方法可以将字符串转换"User"
为User
类,以便我可以使用ActiveRecord
诸如find
,where
等方法。
String#constantize
返回带有字符串名称的常量的值。因为"User"
这是你的User
课:
"User".constantize
# => User(id: integer, ...)
您可以将其分配给变量并调用 ActiveRecord 方法:
model = "User".constantize
model.all
# => [#<User id:1>, #<User id:2>, ...]
你只需要写你的代码
str="User"
class_name=str.constantize
你会得到这样的格式数据
User(id: integer, login: string, name: string, email: string, user_rank: integer
用户作为类名
第二种方法是 class_name= Object.const_get(str)
更安全的方法:
"string".classify.constantize.find(....)
而是在您的字符串类中定义一个方法
def constantize_with_care(list_of_klasses=[])
list_of_klasses.each do |klass|
return self.constantize if self == klass.to_s
end
raise "Not allowed to constantize #{self}!"
end
然后使用
"user".constantize_with_care([User])
现在你可以做这样的事情
params[:name].constantize_with_care([User])
没有任何安全顾虑。