Ajax をつかって、記事(article)にコメント(comment)を挿入するほうほう。よく使うわりにはいつもはまってしまうので備忘録。(カフェトークでは、レッスンにメモを追加するところにつかってます) article.rb class Article < ActiveRecord::Base belongs_to :user has_many :comments after_update :save_comments def new_comment_attributes=(comment_attributes) comment_attributes.each do |attributes| comments.build(attributes) if attributes[:content].length > 0 end end # ここでは使ってない def existing_com