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.
一个模型没有表,一个表没有模型
例子:
一个名为User的模型,但没有users 表...一个名为products的表,但没有Product模型。
在上述情况下,我们可以从 User.rb 访问产品数据吗?.. 如果可以,如何?
干杯!
出于多种原因,我会创建一个模型products……但是,如果您真的想这样做,我认为您可以使用原始 SQL 查询:
products
就像是:ActiveRecord::Base.connection.select_all('SELECT * FROM products')
ActiveRecord::Base.connection.select_all('SELECT * FROM products')
我希望它有帮助...