Ruby on Rails/ActionController/Cookies
外觀
當然,您可以在 Rails 應用程式中使用 cookies。這與使用 引數 或 會話 非常相似。考慮以下示例
def index
#here we want to store the user name, if the user checked the "Remember me" checkbox with HTML attribute name="remember_me"
#we have already looked up the user and stored its object inside the object-variable "@user"
if params[:remember_me]
cookies[:commenter_name] = @user.name
else # Delete cookie for the commenter's name cookie, if any
cookies.delete(:commenter_name)
end
end