我有一个名为的模型文件:
r_i_o_modules_and_instrument.rb
...其中包含类似这样的内容...
class RIOModulesAndInstrument < ActiveRecord::Base
belongs_to :parentmodel
attr_accessible :attribute_1, :attribute_2, :attribute_3
end
对应的 MySQL 表名是:
r_i_o_modules_and_instruments
但是:总的来说,从...
> RIOModulesAndInstrument.count
...我得到:
NameError: uninitialized constant RIOModulesAndInstrument
有没有人知道问题是什么以及解决方法?(是命名限制问题吗?)
非常感谢您的帮助!