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 1 year has passed since last update.

HTMLの基礎知識(星評価の平均)

Last updated at Posted at 2022-07-22

今日もプログラミングしていますか?:sunny:

今回は星機能の平均の出し方を実装していきたいと思います!!

*注意 ここでは以下の詳細ページの実装が大前提となっております!!!

"https://qiita.com/tomo089/items/246230912c32aa5c7864"

Step1:コントローラーの追加
tweets_controller.rb
def show
      @tweet = Tweet.find(params[:id])

       @reviews = @tweet.reviews
       @review = Review.new
    #変更箇所
       @totals=@reviews.average(:eve)
    #ここまで   
       
    end
Step2:Viewの追加
tweets_show.html.erb.
 <p>平均評価</p>

  <span class="star-rating">
   <span class="star-rating-front" style="width:  <%= getPercent(@totals) %>%;">★★★★★</span>
   <span class="star-rating-back">★★★★★</span>
</span>
Step3:確認!!!

スクリーンショット (61).png

以上になります!!
簡単でしょ!!!
ぜひ実装してみてください!!

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?