希望标题非常不言自明.
我正在使用mongoid作为我的ORM的Rails应用程序,我想知道是否有人知道是否有相当于ActiveRecord的serialize
方法.我已经查看了mongoid文档,但还没有找到任何东西.
以下是该模型的示例:
class Foo include Mongoid::Document field :params,type: String serialize :params # method from ActiveRecord end
提前致谢!
解决方法
您不需要使用MongoDB进行序列化,只要您可以在字段数组和哈希中存储.
field :hash_params,type: Hash field :array_params,type: Array