1
所以我試圖讓我的主題控制器創建一個新的主題與初始職位。我的新主題視圖看起來像這樣post_attributes的未經允許的參數
<% @title = "New Topic" %>
<h1>New Topic</h1>
<%= form_for [@topic.forum, @topic] do |f| %>
<%= render "topic_form", f: f %>
<%= f.submit "Create Topic", class: "btn btn-primary" %>
<% end %>
下面是部分以及
<% if @topic.errors.any? %>
<div class="alert alert-danger">
<p>The form contains <%= pluralize(@topic.errors.count, "error") %>.</p>
</div>
<ul>
<% @topic.errors.full_messages.each do |message| %>
<li class="text-danger"> <%= message %> </li>
<% end %>
</ul>
<% end %>
<div class='form-group'>
<%= f.label :title, "Title*" %>
<%= f.text_field :title, class: 'form-control' %>
</div>
<%= f.fields_for :posts do |post| %>
<div class='form-group'>
<%= post.label :content, "Content*" %>
<%= post.text_area :content, size: "50x6", class: 'form-control' %>
</div>
<% end %>
主題模型的
class Topic < ActiveRecord::Base
belongs_to :forum
belongs_to :user
has_many :posts, :dependent => :destroy
validates :title, presence: true
accepts_nested_attributes_for :posts, allow_destroy: true
end
主題控制器
def new
forum = Forum.find(params[:forum_id])
@topic = forum.topics.build
post = @topic.posts.build
end
def create
forum = Forum.find(params[:forum_id])
@topic = forum.topics.build(topic_params)
@topic.last_poster_id = current_user.id
@topic.last_post_at = Time.now
@topic.user_id = current_user.id
if @topic.save then
flash[:success] = "Topic Created!"
redirect_to @topic
else
render 'new'
end
end
憑藉雄厚的參數的事情
def topic_params
params.require(:topic).permit(:title, :post_attributes => [:id, :topic_id, :content])
end
但無論我做什麼它打破。開發日誌說有
Unpermitted parameters: posts_attributes
我已經在網上搜索了無數個小時,並沒有獲勝。任何人有任何想法如何解決這個問題。現在,當我點擊主題新視圖中的提交按鈕時,它會提交標題,但是您放入的內容會丟失,當我創建新帖子時,它工作得很好,並打印出用戶放入的內容。在創建新主題時中斷,唯一中斷的部分是內容部分。
我認爲這實際上解決了問題,但快速提出問題,因爲我的視圖需要user_id來訪問用戶名。當我執行'params.require(:topic).permit(:title,:post_attributes => [:id,:user_id => current_user.id,:topic_id,:content])''這不起作用? – G3tinmybelly
我需要以某種方式將user_id鏈接到最初的帖子。有任何想法嗎? – G3tinmybelly
我想我想通了。在創建方法中,我剛剛做了一個janky設置,其中@ topic.posts [length] .user_id = current_user.id。如果您對如何解決這個問題有更好的想法,請成爲我的客人。 – G3tinmybelly