Ruby on Rails
Sicheres Konstantisieren
Suche…
Erfolgreiche safe_constantize
User
ist ein ActiveRecord
oder Mongoid
Klasse. Ersetzen Sie den User
durch eine beliebige Rails
Klasse in Ihrem Projekt (auch etwas wie Integer
oder 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]
Nicht erfolgreich safe_constantize
Dieses Beispiel funktioniert nicht, da die übergebene Zeichenfolge nicht als Konstante im Projekt erkannt wird. Selbst wenn Sie "array"
, funktioniert es nicht, da es nicht groß geschrieben wird.
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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow