ctx.Response.Header.SetLastModified(changed)
if ctx.IfModifiedSince(changed) {
buf = data
} else {
ctx.SetStatusCode(fasthttp.StatusNotModified)
}
ctx
是*fasthttp.RequestCtx
。
我的回复中需要Last-Modified
标题,但我只有:
HTTP/1.1 200 OK
Content-Type: application/json
我做错了什么?