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 5 years have passed since last update.

contentのidを取得したい

Last updated at Posted at 2018-10-22

初めまして。
初歩的な質問ですが教えていただきたいことがあります。

状況

簡単な説明ですがさせていただきます。

クラス
content → message
1  対  N の関係を作成してます。
現状だとmessage/1..Nといったようにパラメーターごとのメッセージボックスに入れる状態で、そのページ内にcreate_formを作成してます。

希望としてはcontentに紐づいたメッセージを作成したいのですが、content_idを取得できていない状態です。
もしお分かりになるようであればアドバイスをいただきたいと思います。
よろしくお願いいたします。

controller

def show
@content = Content.find(params[:id])
@message = Message.new
@messages = Message.where(content_id: @content.id)
end

.find_by(id: @content.id)

select ... where id = @content.id

def create
@content = Content.where(content_id: @content.id)
@message = @content.messages.build(message_params)
if @message.save
redirect_back(fallback_location: @content)
else
render "/contents/show"
end
end

**showアクションの中にcreateアクションがある

**Content.find(params[:id])
nilclassとなる
**Content.find_by(params[:id])
content_id 1しか取得できない

view

  


  <%= form_for(@message) do |f| %>
  <%= f.label :喋ってみよう %>
   <%= f.text_area :talk, class: 'form-control'%>
   <%= f.submit "送信", class: "btn btn-success btn-sm" %>
   <% end %>
   

routes

post "/created", to:"messages#create"

上記がコードとなります。

0
0
1

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?