Ich versuche, Warenkorb zu realisieren, und ich schrieb diesen Code:
if cookies[:shopping_cart]
Cart.find(cookies[:shopping_cart][:value])
else
cookies[:test] = 'tt'
cart = Cart.create
cookies[:shopping_cart] = {
:value => cart.id,
:expires => 1.week.from_now.utc,
:path => '/',
:domain => 'localhost:3000'
}
end
Aber jedes Mal habe ich cookies[:shopping_cart] nil, und jedes Mal, wenn mein "Code" versuchen, neue cookies[:shopping_cart] zu erstellen.
cookies[:test] auch jedes Mal gleich null.
was bedeutet das?