当我读到《Agile web development with rails,Task D》这本书时,我完全糊涂了。
我知道基类中的 current_cart 方法可以通过会话找到目标购物车。但是,我不知道 sysbol :card_id 来自哪里。
lineItemController调用current_cart方法时,:cart_id的值是多少?
更重要的是,我已经运行了常见的“rails generate scaffold line_item product_id:integer cart_id integer”。这两种cart_id是什么关系?
class ApplicationController < ActionController::Base
protect_from_forgery
private
def current_cart
Cart.find(session[:cart_id])
rescue ActiveRecord::RecordNotFound
cart = Cart.create
session[:cart_id] = cart.id
cart
end
end