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

11 行
203 B

  1. module CurrentCart
  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
  9. end