登录 注册
当前位置:主页 > 资源下载 > 10 > Nuxt CSRF: 服务器中间件模块 for Nuxt 应用的 CSRF 保护

Nuxt CSRF: 服务器中间件模块 for Nuxt 应用的 CSRF 保护

  • 更新:2024-06-09 19:28:44
  • 大小:6KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

nuxt-csrf 用于NUXT的CSRF模块 安装 安装模块 # NPM npm install --save @privyid/nuxt-csrf # Yarn yarn add @privyid/nuxt-csrf 包含在nuxt.config.js // nuxt.config.js { modules : [ // Simple usage '@privyid/nuxt-csrf' , // With options [ '@privyid/nuxt-csrf' , { /* module options */ } ] ] } 用法 获取令牌 通过组件 const token = this . $csrfToken ( ) 通过上下文 const token = context . app . $csrfToken ( ) 与