假设我有一个名为 PaymentMilestone
的 ActiveRecord 模型。
有没有什么好方法可以从中获取 payment_milestones
?
(我知道 #table_name
可以这样做,但我的表名是 payment_milestone
(单数),而不是 payment_milestones
,我需要复数版本。)
最佳答案
一些方法调用,但这有效:
> PaymentMilestone.name.underscore.pluralize
=> "payment_milestones"
关于ruby-on-rails - 获取 Rails 模型名称的复数版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21536228/