ruby-on-rails – 存储时间戳为Number Mongoid

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 存储时间戳为Number Mongoid前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Mongoid的新手.在我的模型文件中,我创建了一个数据类型为BigDecimal的字段.我想在其中存储时间戳.以下是我使用的型号:
class Test
  include Mongoid::Document
  field :time_stamp,type: BigDecimal
end

以下是我用来创建文档的代码

aTime = "Wed Apr 24 09:48:38 +0000 2013"
timest = aTime.to_time.to_i
Test.create({time_stamp: timest})

我看到time_stamp在数据库中存储为String.任何人都可以指示我将时间戳记存储在数据库中,以便我可以对其进行一些操作.提前致谢.

解决方法

根据 this answer,MongoDB支持的数字类型有:
MongoDB stores data in a binary format called BSON which supports these numeric data types:

int32 - 4 bytes (32-bit signed integer)
int64 - 8 bytes (64-bit signed integer)
double - 8 bytes (64-bit IEEE 754 floating point)

Mongoid documentation年加强此声明:

Types that are not supported as dynamic attributes since they cannot be cast are:

BigDecimal
Date
DateTime
Range

我不知道你想要的字段的东西,但如果你真的希望它存储为一个数字,你必须使用不同的数字类型,由MongoDB(BSON)支持,可能是浮点数或整数.

原文链接:https://www.f2er.com/ruby/271493.html

猜你在找的Ruby相关文章