haml データベース取得 投稿機能表示
アウトプット用です。
簡単な投稿機能の実装をしていたのですが若干詰まりました。
下記コードです。
class TopPageController < ApplicationController
def index
@toppages = TopPage.all
end
def new
@toppage = TopPage.new
end
def create
TopPage.create(TopPage.params)
redirect_to top_page_index_path
end
def show
end
private
def TopPage_params
params.require(:TopPage).permit(:contents)
end
end
.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
お悩み一覧
.top__consultation__text
= top_page.contents
.top__consultation__text__time
= top_page.created_at
データはパスしているし受け取るカラムも指定しているよな。。。?と思ってましたが
よくみたらtop_pageの定義していない事に気付きeach文を使ってみました
.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.allで全てデータをもってくるようにコントローラーは記述しましたが
実際の取得はcontentsしか指定してないのに何故全て表示されてしまうのか?
ただcontentsはしっかりとクラス内に表示されていて
何も定義されていないところに カラム名とデータが表示されています。
何となくhaml側の記述に問題があると思ってます。
ここが直せなかったのでまた明日です。
Author And Source
この問題について(haml データベース取得 投稿機能表示), 我々は、より多くの情報をここで見つけました https://qiita.com/forest0720/items/5c74dec55c1833c175c3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .