From fc6f531449178e1ba546470e951f3eb1662c7a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E7=BA=A2=E5=B2=A9?= Date: Fri, 24 Mar 2023 09:33:36 +0800 Subject: [PATCH] upgrade-dev v2.3.32 --- pkgs/json/json.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/json/json.go b/pkgs/json/json.go index e0628230..3b7320c7 100644 --- a/pkgs/json/json.go +++ b/pkgs/json/json.go @@ -105,6 +105,9 @@ type jsonData struct { } // NewJSON 返回 jsonData 对象,JSONArray or JSONObject +// +// []byte("{...}") +// []byte("[...]") func NewJSON(data []byte) JSON { if data == nil { return nil @@ -129,6 +132,9 @@ func NewJSON(data []byte) JSON { } // NewJSONArray 字节JSONArray / 数组 / 切片 转换 +// +// []byte("[...]") +// []slice func NewJSONArray(value any) JSONArray { if value != nil { // 如果 []byte 就必须是 字节JSONArray @@ -166,6 +172,10 @@ func NewJSONArray(value any) JSONArray { } // NewJSONObject 字节JSONObject / 结构 / JSONObject 转换 +// +// []byte("{...}") +// struct +// map[string][type] func NewJSONObject(value any) JSONObject { if value != nil { // 如果 []byte 就必须是 字节JSONObject