1

我一直在尝试为我的 RoR 3 网站创建一个赞按钮。我使用了此链接中建议的解决方案:Simple like/unlike button with rails 3, jquery, and ajax

我有一个用户、帖子和喜欢的模型。但是喜欢按钮部分从我的显示帖子页面显示“无法批量分配受保护的属性:post_id”错误。我已经研究了其他线程的解决方案,但似乎没有任何效果。粘贴我的代码摘录以供参考。

class Like < ActiveRecord::Base
  belongs_to :user
  belongs_to :post
end

class Post < ActiveRecord::Base
   attr_accessible :title, :content, :posts_attributes
   belongs_to :user
   has_many :likes
   accepts_nested_attributes_for :likes
   .
   .
   .
end

class User < ActiveRecord::Base
   attr_accessible :email, :name, :password, :password_confirmation
   has_many :posts, dependent: :destroy
   has_many :likes
   .
   .
   .
end

提前致谢。

4

1 回答 1

1

将 attr_accessible :post_id, :user_id 添加到您的 Like 模型

于 2012-12-02T16:11:55.917 回答