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.
是否可以快速检索给定 Mongoid 字段的数据类型?
类似于:FieldName.type?
谢谢
我想,这不仅仅是 mongo 特定的。您可以使用以下代码来检索字段的字段类型,而与下面的数据库无关。
User.first.name.class => String User.first.up_votes.class => Fixnum
我仍在使用 mongoid 2.4,所以我不确定这是否也适用于 3.0:
User.fields["field_name"].options[:type]