Ruby nonce 抛出错误
require 'date'
nonce = DateTime.now.to_i
错误:
undefined method `to_i' for #<DateTime:0x000000015336e8> (NoMethodError)
在我的控制台中工作它给出了正确的值
2.1.0 :014 > nonce = DateTime.now.to_i
=> 1405065242
为什么它以编程方式抛出错误?
编辑
有什么方法可以添加随机数。条件是它应该是一个整数,必须在每个后续请求中递增