Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8938

シンプル星評価機能 ~ Rails

$
0
0
星評価機能 このページでは投稿の星評価機能をシンプルに実装します。 1.integer型のstarカラム追加 2.for文で番号の数だけ☆を表示 3.CSSで簡単にデザインを実装 投稿用のテーブルはtweetsテーブルを例に挙げています。 1.integer型のstarカラム追加 cmd $ rails g migration AddStarToTweets star:integer $ rails db:migrate 2.for文で番号の数だけ★を表示 views/tweets/index.html.erb <% @tweets.each do |t| %> ... <div class="star"> <% for i in 1..t.star do %> <%= ☆ %> <% end %> </div> <% end %> </div> 3.CSSで簡単にデザインを実装 一例として以下のように実装できます。 自分に好みにしていきましょう。 .star{ font-size: 30px; color: yellow; }

Viewing all articles
Browse latest Browse all 8938

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>