在 rails 中怎么操作 cookies csdn

日期:2016-09-27 21:21:27 人气:1

在 rails 中怎么操作 cookies csdn

  Rails通过cookies方法来操作cookie,这和session的操作有点类似   [ruby] view plain copy   class CommentsController < ApplicationController   def new   # 假如cookie中有评论者的姓名,则自动调用   @comment = Comment.new(author: cookies[:commenter_name])   end      def create   
    A+
热门评论