LastModified标头不会出现

时间:2017-11-01 12:04:43

标签: http go

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

我做错了什么?

0 个答案:

没有答案