美文网首页
过滤非get请求和设置缓存

过滤非get请求和设置缓存

作者: kzc爱吃梨 | 来源:发表于2022-03-08 21:46 被阅读0次
     // 过滤非get请求
    if (method !== 'GET') {
        response.statusCode = 405
        response.end()
        return
    }
    
    // 设置缓存
     response.setHeader('CaChe-Control', `public, max-age${cacheAge}`)
    

    相关文章

      网友评论

          本文标题:过滤非get请求和设置缓存

          本文链接:https://www.haomeiwen.com/subject/noxohrtx.html