1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-15 23:22:05 +02:00

Return json data when content-type is "application/json"

Before #344, the filer will return json data, and cschiano make a template that render to html. But sometimes need json data, so I add some code will return json data when content-type is "application/json".
This commit is contained in:
listeng 2016-12-26 16:49:43 +08:00 committed by GitHub
parent 6b5867ce9d
commit 5b18cf09e7

View file

@ -74,7 +74,12 @@ func (fs *FilerServer) listDirectoryHandler(w http.ResponseWriter, r *http.Reque
lastFileName,
shouldDisplayLoadMore,
}
ui.StatusTpl.Execute(w, args)
if strings.ToLower(r.Header.Get("Content-Type")) == "application/json" {
writeJsonQuiet(w, r, http.StatusOK, args)
} else {
ui.StatusTpl.Execute(w, args)
}
}
func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request, isGetMethod bool) {