如何复制兴趣点?
因此PointOfInterest
变为PointsOfInterest
,point_of_interest
应变为points_of_interest
,依此类推。
答案 0 :(得分:2)
您可以通过以下方式覆盖复数:
在config/initializers/inflections.rb
ActiveSupport::Inflector.inflections do |inflect|
inflect.irregular 'PointOfInterest', 'PointsOfInterest'
inflect.irregular 'point_of_interest', 'points_of_interest'
end
答案 1 :(得分:0)