2023-08-24 10:30AM
使用这个代码即可:
skip_before_action :verify_authenticity_token
可以将该代码添加到需要跳过 CSRF 令牌验证的控制器中,可以将这一行添加到任何操作上方
eg:
class ArticlesController < ApplicationController
skip_before_action :verify_authenticity_token, only: [:create, :update]
def index
end
end
我这里指定了只有进行create
和update
操作时才跳过验证。
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论