前提・実現したいこと
Ruby on railsでレコードから情報を取得して、ビューに投稿したものを表示させる際に
ランダムで表示させたい。
ここに質問の内容を詳しく書いてください。
Ruby on rails でinstagramのような画像投稿Webアプリケーションを作っています。
投稿した画像をランダムにビューに表示させる機能を実装中に以下のエラーメッセージが発生しました。
コントローラーを実装すれば、ランダム表示ができる予測しています。
もしくはHTML,Jacvascriptでも操作可能でしょうか!?
発生している問題・エラーメッセージ
NoMethodError in Items#index Showing /Users/uraokayuutarou/projects/NF/app/views/items/index.html.erb where line #2 raised: undefined method `each' for #<Item:0x00007fbe641a99e0> Extracted source (around line #2): <div class="contents row"> <% @items.each do |item| %> <div class="content_post" style="background-image: url(<%= item.image %>);"> <div class="more"> <span><%= image_tag 'arrow_top.png' %></span> <ul class="more_list">
該当のソースコード
Ruby on rails app/veiws/items/index.html.erb <div class="contents row"> <% @items.each do |item| %> <div class="content_post" style="background-image: url(<%= item.image %>);"> <div class="more"> <span><%= image_tag 'arrow_top.png' %></span> <ul class="more_list"> <li> <%= link_to '詳細', item_path(item.id), method: :get %> </li> <li> <% if user_signed_in? && current_user.id == item.user_id%> <%= link_to '編集', edit_item_path(item.id), method: :get %> </li> <li> <%= link_to '削除', item_path(item.id), method: :delete %> </li> <% end %> </ul> </div> <p><%= item.text %></p> <span class="name"> <a href="/users/<%= item.user.id %>"> <span>投稿者</span><%= item.user.nickname%> </a> </span> </div> <% end %> </div> app/controllers/item_controller.rb class ItemsController < ApplicationController before_action :set_item, only: [:edit, :show] before_action :move_to_index, except: [:index, :show] def index @items = Item.includes(:user).sample ←ここのコードでランダム表示できると仮説 end def new @item = Item.new end def create Item.create(item_params) end def destroy item = Item.find(params[:id]) item.destroy end def edit end def update item = Item.find(params[:id]) item.update(item_params) end def show end def set_item @item = Item.find(params[:id]) end private def item_params params.require(:item).permit(:image, :text).merge(user_id: current_user.id) end def move_to_index unless user_signed_in? redirect_to action: :index end end end
試したこと
ランダム表示
@items = Item.includes(:user).sample ←ここのコードでランダム表示できると仮説
最新の投稿順の場合
@items = Item.includes(:user)order("created_at DESC")
上記を使ってみました。
補足情報(FW/ツールのバージョンなど)
qiita
【Rails】データベースからランダムにいくつかのレコードを取得する方法【ActiveRecord】
https://qiita.com/yutaroadachi/items/c48125e1c3f9b2403c38
テックアカデミー
sampleメソッド、suffleメソッドを使う
配列オブジェクト.sample
https://techacademy.jp/magazine/30661
teratail
Laravel ランダム順で取得したレコードを1ページずつで表示したいが、正しく取得できない
https://teratail.com/questions/196451
(PHPはまだ未学習なので、Ruby and railsで解決したい)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/22 09:53
2020/10/22 09:56