我有一个简单的模型:
class Post < ActiveRecord::Base end
它有一个INT列命名类型
创建记录时:
Post.create(:type => 1)
我得到:
NoMethodError: undefined method `safe_constantize' for 1:Fixnum
我究竟做错了什么?
解决方法
就像:Fixnum上没有名为safe_constantize的方法.
type为Single Table Inheritance.通常,将应用程序中已知模型的字符串表示形式作为类型值.见rails guides