문제

레일 모델에서 레코드가 추가/업데이트되면 Rails 서버 또는 데이터베이스 서버의 시계 당 타임 스탬프가 제공됩니까?

도움이 되었습니까?

해결책

빠른 Ack 레일 소스 Ruby 's가 반환 한 Rails 서버 시간임을 밝혀냅니다. 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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top