2

我找到了 ActiveSupport 变形器类。我在哪里可以找到初始化英语变形器的代码?

4

2 回答 2

1

ActiveSupport inflector.rb文件包括所有的变形库和模块。

如果你想定制它,inflections.rb你的 Railsconfig/initializers路径中有一个文件。

默认情况下它包含

# Be sure to restart your server when you modify this file.

# Add new inflection rules using the following format
# (all these examples are active by default):
# ActiveSupport::Inflector.inflections do |inflect|
#   inflect.plural /^(ox)$/i, '\1en'
#   inflect.singular /^(ox)en/i, '\1'
#   inflect.irregular 'person', 'people'
#   inflect.uncountable %w( fish sheep )
# end

您可以对其进行编辑以自定义Inflector行为。

于 2010-12-14T14:01:56.507 回答
0

英文规则在 ActiveSupport 中(特别是在 lib/active_support/inflections.rb 中)。

于 2010-12-14T14:01:55.777 回答