Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,该应用程序需要根据类型为数据库中的每条记录显示描述。
例如。
如果客户正在编辑 A 类的 product1,则应该在 product1 的编辑页面显示 A 类对应的描述。
我可以将描述存储在类型表中。但我正在寻找其他选择。
谢谢你的帮忙。
这听起来像一个单表继承解决方案
http://blog.thirst.co/post/14885390861/rails-single-table-inheritance
不过不要过度使用 STI。
我继续在数据库中为每种类型添加描述。它工作得很好。