ActiveSupport 的英文复数规则在哪里定义?
我找到了 ActiveSupport 变形器类。在哪里可以找到初始化英语变形器的代码?
I found the ActiveSupport inflector class. Where can I find the code that initializes the inflector for English?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ActiveSupport inflector.rb 文件包含所有变形库和模块。
如果您想自定义它,Rails
config/initializers
路径中有一个名为inflections.rb
的文件。默认情况下,它包含
您可以编辑它来自定义
Inflector
行为。The ActiveSupport inflector.rb file includes all the inflection libraries and modules.
If you want to customize it, there's a file called
inflections.rb
in your Railsconfig/initializers
path.By default it contains
You can edit it to customize the
Inflector
behavior.英语规则位于 ActiveSupport 中(具体在 lib/active_support/inflections.rb 中)。
The English rules are in ActiveSupport (specifically in lib/active_support/inflections.rb).