Ruby on Rails를 사용하여 날짜 형식 지정 flickr api는 게시 된 날짜를 유닉스 타임 스탬프 1로 제공합니다. " The posted date is always passed around as a unix timestamp, which is an unsigned integer specifying the number of seconds since Jan 1st 1970 GMT." 예를 들어, 다음은 날짜 ' 1100897479'입니다. Ruby on Rails를 사용하여 어떻게 포맷합니까? 타임 스탬프 문자열을 구문 분석하고 시간 객체를 가지면 (자세한 내용은 다른 답변 참조) Rails의 Time.to_formatted_s 를 사용할 수 있습니다 . 기호로 지정할 수있는 여러 형식이 내장되..