RailsによるアジャイルWebアプリケーション開発のカート部分で、エラーが出てて解決策がぐぐったらでたのでメモ
エラー
ActiveModel::MassAssignmentSecurity::Error in LineItemsController#create
解決策
/depot/app/models/line_item.rb
class LineItem < ActiveRecord::Base belongs_to :product belongs_to :cart attr_accessible :product, :product_id, :quantity, :cart_id, :id end
勉強中の言語は本以上の事ができないから困る。
さっさとrailsでプログラムを作れるようになりたいなー。