0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

いつ送信されたものなのか「○分前」と表示させたい

Posted at

#はじめに
 チャットの中で、送信された時刻だけでなく、それが今からどれくらい前なのか簡単に表示させることができないかと考え、調べたものをまとめておく。
 調べるまでは、今の時刻から、送信された時刻を引くのかなぁと漠然と考えていたが、超絶便利なメソッドがあった。

##○分前と表示させる方法

<%= time_ago_in_words(message.created_at) %>

messageの部分はコントローラーから渡しているインスタンス変数が入る。
time_age_in_wordsメソッド、中学英語みたい。

##終わりに
 アプリケーションを作っていて気づいたが、時間に関するメソッドや機能ってたくさんあって便利!英語が苦手だったけど、プログラミングに出てくる英単語って中学生でもわかるレベルのものがたくさんあって、英語アレルギーが出ないし、逆にわかるから楽しい!!単語一つのメソッドもたくさんあるが、前置詞がついて痒いところに手が届く系のメソッドも面白い。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?