Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
b45f0b9b
Commit
b45f0b9b
authored
May 16, 2014
by
astaxie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
beego: fix #478
parent
cf04ade6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
output.go
context/output.go
+5
-1
No files found.
context/output.go
View file @
b45f0b9b
...
@@ -237,10 +237,14 @@ func (output *BeegoOutput) Xml(data interface{}, hasIndent bool) error {
...
@@ -237,10 +237,14 @@ func (output *BeegoOutput) Xml(data interface{}, hasIndent bool) error {
// Download forces response for download file.
// Download forces response for download file.
// it prepares the download response header automatically.
// it prepares the download response header automatically.
func
(
output
*
BeegoOutput
)
Download
(
file
string
)
{
func
(
output
*
BeegoOutput
)
Download
(
file
string
,
filename
...
string
)
{
output
.
Header
(
"Content-Description"
,
"File Transfer"
)
output
.
Header
(
"Content-Description"
,
"File Transfer"
)
output
.
Header
(
"Content-Type"
,
"application/octet-stream"
)
output
.
Header
(
"Content-Type"
,
"application/octet-stream"
)
if
len
(
filename
)
>
0
&&
filename
[
0
]
!=
""
{
output
.
Header
(
"Content-Disposition"
,
"attachment; filename="
+
filename
[
0
])
}
else
{
output
.
Header
(
"Content-Disposition"
,
"attachment; filename="
+
filepath
.
Base
(
file
))
output
.
Header
(
"Content-Disposition"
,
"attachment; filename="
+
filepath
.
Base
(
file
))
}
output
.
Header
(
"Content-Transfer-Encoding"
,
"binary"
)
output
.
Header
(
"Content-Transfer-Encoding"
,
"binary"
)
output
.
Header
(
"Expires"
,
"0"
)
output
.
Header
(
"Expires"
,
"0"
)
output
.
Header
(
"Cache-Control"
,
"must-revalidate"
)
output
.
Header
(
"Cache-Control"
,
"must-revalidate"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment