v0.0.277 DYN-166 json marshal filter in ginext Write
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 54s
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 54s
This commit is contained in:
parent
05636a1e4d
commit
7c40bcfd3c
@ -27,7 +27,11 @@ func (j jsonHTTPResponse) Write(g *gin.Context) {
|
|||||||
for _, v := range j.headers {
|
for _, v := range j.headers {
|
||||||
g.Header(v.Key, v.Val)
|
g.Header(v.Key, v.Val)
|
||||||
}
|
}
|
||||||
g.Render(j.statusCode, json.GoJsonRender{Data: j.data, NilSafeSlices: true, NilSafeMaps: true})
|
var f *string
|
||||||
|
if jsonfilter := g.GetString("goext.jsonfilter"); jsonfilter != "" {
|
||||||
|
f = &jsonfilter
|
||||||
|
}
|
||||||
|
g.Render(j.statusCode, json.GoJsonRender{Data: j.data, NilSafeSlices: true, NilSafeMaps: true, Filter: f})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (j jsonHTTPResponse) WithHeader(k string, v string) HTTPResponse {
|
func (j jsonHTTPResponse) WithHeader(k string, v string) HTTPResponse {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
package goext
|
package goext
|
||||||
|
|
||||||
const GoextVersion = "0.0.276"
|
const GoextVersion = "0.0.277"
|
||||||
|
|
||||||
const GoextVersionTimestamp = "2023-10-05T10:59:20+0200"
|
const GoextVersionTimestamp = "2023-10-05T12:00:51+0200"
|
||||||
|
Loading…
Reference in New Issue
Block a user