概要
簡単な投稿機能を実装しています。
ビューが崩れていてわかりにくいのですが、下記を解決したいので知恵をお貸し頂けないでしょうか。
本来ピンク枠の中の「あいうえお」とその真下の日時を出力したいのですが、全てのカラムが出力されてしまっています。
最も不明なのが指定したクラス外で出力されてしまっています。下記コードになります。
top_page>index.html.haml
.top %ul.top__side ジャンル %li.top__side__love 恋愛 %li.top__side__work 仕事 %li.top__side__money お金 %li.top__side__friend 友人 %li.top__side__school 学校 %li.top__side__other その他 .top__consultation .top__consultation__title お悩み一覧 = @toppages.each do |top_page| .top__consultation__text = top_page.contents .top__consultation__text__time = top_page.created_at
top_page_controller.rb
class
1 def index 2 @toppages = TopPage.all 3 end 4 5 def new 6 @toppage = TopPage.new 7 end 8 9 def create 10 TopPage.create(TopPage.params) 11 redirect_to top_page_index_path 12 end 13 14 def show 15 end 16 17 private 18 def TopPage_params 19 params.require(:TopPage).permit(:contents) 20 end 21end
contentsが投稿内容で
created_atが日時です。
お願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。