Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
訪問者に、データベースからのランダムなテキスト (都市名と電話番号) を表示します。各訪問者にはランダムな値が表示されます。同じ訪問者に同じデータを表示したい (x 日間)。
このようなもの?
class HomeController < ApplicationController def index @random_text = cookies[:random_text] || Model.find(1).random_text cookies[:random_text] ||= @random_text end end