在rails 3应用程序中使用serialize_with_options gem。
的Gemfile
gem 'serialize_with_options'
模型中的(User.rb)
serialize_with_options(:less) do
only :id, :name
end
引导应用程序时抛出异常:
NoMethodError: undefined method `serialize_with_options' for User
任何线索为什么/如何不加载gem?