// 过滤非get请求
if (method !== 'GET') {
response.statusCode = 405
response.end()
return
}
// 设置缓存
response.setHeader('CaChe-Control', `public, max-age${cacheAge}`)
// 过滤非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
网友评论