Ruby on Rails
Constantize costante
Ricerca…
Sicuro_constantize riuscito
User
è una classe ActiveRecord
o Mongoid
. Sostituisci User
con qualsiasi classe Rails
nel tuo progetto (anche qualcosa come Integer
o Array
)
my_string = "User" # Capitalized string
# => 'User'
my_constant = my_string.safe_constantize
# => User
my_constant.all.count
# => 18
my_string = "Array"
# => 'Array'
my_constant = my_string.safe_constantize
# => Array
my_constant.new(4)
# => [nil, nil, nil, nil]
Safe_constantize non riuscito
Questo esempio non funzionerà perché la stringa passata non è riconosciuta come costante nel progetto. Anche se si passa in "array"
, non funzionerà in quanto non è in maiuscolo.
my_string = "not_a_constant"
# => 'not_a_constant'
my_string.safe_constantize
# => nil
my_string = "array" #Not capitalized!
# => 'array'
my_string.safe_constantize
# => nil
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow