mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
net/ghttp: fix Content-Type for jsonp
response from application/json
to application/javascript
(#3651)
This commit is contained in:
parent
7d464d4de2
commit
dba6c08548
@ -154,6 +154,7 @@ const (
|
||||
contentTypeXml = "text/xml"
|
||||
contentTypeHtml = "text/html"
|
||||
contentTypeJson = "application/json"
|
||||
contentTypeJavascript = "application/javascript"
|
||||
swaggerUIPackedPath = "/goframe/swaggerui"
|
||||
responseHeaderTraceID = "Trace-ID"
|
||||
responseHeaderContentLength = "Content-Length"
|
||||
|
@ -131,7 +131,7 @@ func (r *Response) WriteJsonExit(content interface{}) {
|
||||
//
|
||||
// Note that there should be a "callback" parameter in the request for JSONP format.
|
||||
func (r *Response) WriteJsonP(content interface{}) {
|
||||
r.Header().Set("Content-Type", contentTypeJson)
|
||||
r.Header().Set("Content-Type", contentTypeJavascript)
|
||||
// If given string/[]byte, response it directly to client.
|
||||
switch content.(type) {
|
||||
case string, []byte:
|
||||
|
@ -301,6 +301,8 @@ func Test_Response_Write(t *testing.T) {
|
||||
t.Assert(client.GetContent(ctx, "/Writefln", "name=john"), "john\n")
|
||||
t.Assert(client.GetContent(ctx, "/WriteJson"), "{\"name\":\"john\"}")
|
||||
t.Assert(client.GetContent(ctx, "/WriteJsonP"), "{\"name\":\"john\"}")
|
||||
resp, _ := client.DoRequest(ctx, http.MethodGet, "/WriteJsonP", "{\"name\":\"john\"}", nil)
|
||||
t.Assert(resp.Header.Get("Content-Type"), "application/javascript")
|
||||
t.Assert(client.GetContent(ctx, "/WriteJsonPWithStruct"), "{\"name\":\"john\"}")
|
||||
t.Assert(client.GetContent(ctx, "/WriteJsonPWithStruct", "callback=callback"),
|
||||
"callback({\"name\":\"john\"})")
|
||||
|
Loading…
x
Reference in New Issue
Block a user