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