Rails 3 模型名称约定
谁能向我解释一下 Rails 3 中的模型名称约定?
例如:
我的数据库中有一个名为“materialtitles”的表。
模型文件、模型类的名称必须满足 Rails 中的名称约定???
感谢您的帮助。
Can anyone explain me about a model name convention in Rails 3?
For example:
I have a table named "materialtitles" in my database.
What name does a model file, a model class have to satisfy convention of names in Rails???
Thanks for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件名是
materialtitle.rb
并且驻留在 app/models 中。您的模型的类名称将是
Materialtitle
。The filename would be
materialtitle.rb
and would reside in app/models.The class name of your model would be would be
Materialtitle
.