add buffer pdf response

This commit is contained in:
jacs 2024-12-08 00:24:44 -05:00
parent 5896e6e617
commit 5d737c6b10

View file

@ -27,6 +27,17 @@ type header struct {
val string
}
// TODO add doc
func (rs *Response) BufferPDF(name string, b bytes.Buffer) *Response {
if rs.isTerminated == false {
rs.HttpResponseWriter.Header().Add("Content-Type", "application/pdf")
rs.HttpResponseWriter.Header().Add("Content-Disposition", "attachment; filename="+name)
b.WriteTo(rs.HttpResponseWriter)
}
return rs
}
// TODO add doc
func (rs *Response) Any(body any) *Response {
if rs.isTerminated == false {