mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #424 from listeng/master
Return json data when content-type is "application/json"
This commit is contained in:
commit
f7ff98c747
|
@ -74,7 +74,12 @@ func (fs *FilerServer) listDirectoryHandler(w http.ResponseWriter, r *http.Reque
|
||||||
lastFileName,
|
lastFileName,
|
||||||
shouldDisplayLoadMore,
|
shouldDisplayLoadMore,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if strings.ToLower(r.Header.Get("Content-Type")) == "application/json" {
|
||||||
|
writeJsonQuiet(w, r, http.StatusOK, args)
|
||||||
|
} else {
|
||||||
ui.StatusTpl.Execute(w, args)
|
ui.StatusTpl.Execute(w, args)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request, isGetMethod bool) {
|
func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request, isGetMethod bool) {
|
||||||
|
|
Loading…
Reference in a new issue