文档
安全
Methods

Methods

BFF 允许的请求 methods, 过滤掉不允许的请求类型

使用

  • 安装依赖
yarn add @yunflyjs/yunfly-plugin-security
  • 新增安全配置 security.methods
src/config/config.default.ts
config.security = {
    enable: true,
    methods: {
        enable: true,
        values: ['GET','POST','OPTIONS'],
    }
}

参数说明

字段类型必填说明
enableboolean是否开启
valuesArray<'CONNECT'|'DELETE'|'GET'|'HEAD'|'OPTIONS'|'PATCH'|'POST'|'PUT'|'TRACE'>允许的methods类型 (默认值:['GET','POST','OPTIONS'])