いま授業検索アプリを作っているのですがランキング表示のところで同じ名前の授業が表示されてしまいます。いいね順で表示しようとしているのですが既にランキング上位にあるものは表示しないようにしたいです。よろしくお願いします。授業のidと名前は掲示板に投稿するごとにidは変わるので一致していません。それが原因だと思います。
index.html.erb
<h3>Ranking <i class="fas fa-crown"></i></h3> <% @all_ranks.each.with_index(1) do |rank, i|%> <p>第<%=i%>位</p> <p><%= link_to rank.title, lesson_path(rank.id)%></p> <%end%>lessons_controller.rb
def index
@lessons=Lesson.all.order("created_at DESC")
@all_ranks = Lesson.find(Like.group(:lesson_id).order('count(lesson_id) desc').limit(50).distinct.pluck(:lesson_id))
end
schema.rb
create_table "lessons", force: :cascade do |t|
t.string "title"
t.text "body"
t.integer "user_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "teacher_name"
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.string "name"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。