Merge pull request 'add buffer pdf response' (#15) from jacs/core:develop into develop

Reviewed-on: goffee/core#15
This commit is contained in:
Zeni Kim 2024-12-08 08:58:08 -05:00
commit 92f76c5f33

View file

@ -27,6 +27,17 @@ type header struct {
val string 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 // TODO add doc
func (rs *Response) Any(body any) *Response { func (rs *Response) Any(body any) *Response {
if rs.isTerminated == false { if rs.isTerminated == false {