您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

10 行
195 B

  1. module CurrentCard
  2. private
  3. def set_cart
  4. @cart = Cart.find(session[:cart_id])
  5. rescue ActiveRecord::RecordNotFound
  6. @cart = Cart.create
  7. session[:cart_id] = @cart.id
  8. end