私は実用的な本棚のレッスンを勉強しています。セッションカウンターを作ってみました。私のストアコントローラーは
class StoreController < ApplicationController
def increment_counter
if session[:counter].nil?
session[:counter] = 0
end
session[:counter] += 1
end
def index
@count = increment_counter
@products = Product.all
@cart = current_cart
@time = Time.now
@shown_message = "You've been here #{@count} times" if increment_counter >5
end
end
そして私の見解は
<h5><p><%= @shown_message %></p></h5>..
5回まで効かない。しかし、5,7,9,11 として数え始めた後。. セッション[:カウンター]の何が問題になっていますか?