0

私はプログラミングが初めてで、アプリに実装している新しい機能に苦労しています。ユーザーが他のユーザーのマイクロポストにコメントできるようにしたい。

エラーが表示されます: 一括割り当てマイクロポストはできません

ユーザー モデル:

attr_accessible :name, :email, :password, :password_confirmation #is this secure with password there?
attr_protected :admin   #attr_protected necessary?
has_many :microposts, dependent: :destroy
has_many :comments, :through => :microposts, dependent: :destroy

マイクロポスト モデル:

attr_accessible :comment #basically the content of the post
attr_protected :user_id
has_many :comments, dependent: :destroy

コメント モデル:

attr_accessible :content, :micropost
belongs_to :user
belongs_to :micropost
validates :user_id, presence: true
validates :micropost_id, presence: true
validates :content, presence: true
default_scope order: 'comments.created_at ASC'   #is this necessary?

コメント コントローラ:

def create
  @micropost = Micropost.find_by_id(params[:id])   #is this necessary?
  @comment = current_user.comments.create(:micropost => @micropost)
  redirect_to :back
end

ユーザーコントローラー:

def show
  @user = User.find_by_id(params[:id])
  @microposts = @user.microposts.paginate(page: params[:page])
  @micropost  = current_user.microposts.build
  @comments = @micropost.comments
  @comment = current_user.comments.create(:micropost => @micropost) #build, new or create??
end

View/comments/_form:(このパーシャルはすべてのマイクロポストの最後に呼び出されます)

<span class="content"><%= @comment.content %></span>
<span class="timestamp">Said <%= time_ago_in_words(@comment.created_at) %> ago.</span
<%= form_for(@comment) do |f| %>
  <%= f.text_field :content, placeholder: "Say Something..." if signed_in? %>
<% end %>

ルート:

resources :users 
resources :microposts, only: [:create, :destroy] 
resources :comments, only: [:create, :destroy]
4

3 に答える 3

1

属性のマイクロポストを attr_accessible に配置する必要があります

attr_accessible :content, :micropost

デフォルトでは、すべての属性にアクセスできません。attr_accessible でアクセス可能な属性を定義する必要があります。

詳細はこちら

于 2013-01-31T12:11:51.507 に答える
0

rails4 によると、strong パラメータを使用できます。

    def create
      @micropost = Micropost.find_by_id(micropost_params)
     ................

    end

   private
    def micropost_params
    params.require(:micropost).permit(:id)
    end
于 2014-05-07T08:05:13.223 に答える