ruby-on-rails - ActiveModel 时间戳字段 : where does the timestamp come from?

标签 ruby-on-rails timestamp activemodel

在 Rail 模型中,当添加/更新记录时,时间戳是按 Rails 服务器或数据库服务器上的时钟给出的吗?

最佳答案

快速确认 Rails source显示它是 Rails 服务器时间,由 Ruby 的 Time.now 方法返回:

private
  def create_with_timestamps #:nodoc:
    if record_timestamps
      current_time = current_time_from_proper_timezone

      write_attribute('created_at', current_time) if respond_to?(:created_at) && created_at.nil?
      write_attribute('created_on', current_time) if respond_to?(:created_on) && created_on.nil?

      write_attribute('updated_at', current_time) if respond_to?(:updated_at) && updated_at.nil?
      write_attribute('updated_on', current_time) if respond_to?(:updated_on) && updated_on.nil?
    end

    create_without_timestamps
  end

  def update_with_timestamps(*args) #:nodoc:
    if record_timestamps && (!partial_updates? || changed?)
      current_time = current_time_from_proper_timezone

      write_attribute('updated_at', current_time) if respond_to?(:updated_at)
      write_attribute('updated_on', current_time) if respond_to?(:updated_on)
    end

    update_without_timestamps(*args)
  end

  def current_time_from_proper_timezone
    self.class.default_timezone == :utc ? Time.now.utc : Time.now
  end

关于ruby-on-rails - ActiveModel 时间戳字段 : where does the timestamp come from?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1883872/

相关文章:

Mysql - 从 unix 时间戳中选择年份

ruby-on-rails - Rails : . create 使 :id 的自定义值无效

javascript - 如何使用 i18n 值将 coffeescript 中的字符串国际化?

ruby-on-rails - 如何修复 "no such file to load -- RMagick"错误?

ruby-on-rails - Rails 中货币格式的简单方法

ruby-on-rails-3 - form_for 非 AR 模型 - fields_for 数组属性不迭代

ruby-on-rails - 如何在 Rails 控制台中查找和删除部分字符串 - ActiveRecord

ruby-on-rails - rails/乘客 : no such file to load -- bundler

haskell - 如何在 Haskell 中获得毫秒精度的 unix 时间戳?

ruby-on-rails - Rails 不转换时区 (PostgreSQL)