change BufferPDF to BufferFile to support any kind of file
This commit is contained in:
parent
90564daa5b
commit
4968da25f3
1 changed files with 2 additions and 2 deletions
|
@ -28,10 +28,10 @@ type header struct {
|
|||
}
|
||||
|
||||
// TODO add doc
|
||||
func (rs *Response) BufferPDF(name string, b bytes.Buffer) *Response {
|
||||
func (rs *Response) BufferFile(name string, filetype string, b bytes.Buffer) *Response {
|
||||
|
||||
if rs.isTerminated == false {
|
||||
rs.HttpResponseWriter.Header().Add("Content-Type", "application/pdf")
|
||||
rs.HttpResponseWriter.Header().Add("Content-Type", filetype)
|
||||
rs.HttpResponseWriter.Header().Add("Content-Disposition", "attachment; filename="+name)
|
||||
b.WriteTo(rs.HttpResponseWriter)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue