mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 07:00:55 +00:00
Fix content type
This commit is contained in:
parent
5c407ff2e3
commit
755cc98ef7
@ -206,7 +206,7 @@ func (output *BeegoOutput) JSON(data interface{}, hasIndent bool, encoding bool)
|
|||||||
|
|
||||||
// YAML writes yaml to response body.
|
// YAML writes yaml to response body.
|
||||||
func (output *BeegoOutput) YAML(data interface{}) error {
|
func (output *BeegoOutput) YAML(data interface{}) error {
|
||||||
output.Header("Content-Type", "application/application/x-yaml; charset=utf-8")
|
output.Header("Content-Type", "application/x-yaml; charset=utf-8")
|
||||||
var content []byte
|
var content []byte
|
||||||
var err error
|
var err error
|
||||||
content, err = yaml.Marshal(data)
|
content, err = yaml.Marshal(data)
|
||||||
|
Loading…
Reference in New Issue
Block a user