|
|
|
@@ -38,7 +38,7 @@ type ownJSON struct {
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 8:39 下午 2021/9/14
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumber(byteData []byte, receiver interface{}) error {
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumber(byteData []byte, receiver any) error {
|
|
|
|
|
decoder := json.NewDecoder(bytes.NewReader(byteData))
|
|
|
|
|
decoder.UseNumber()
|
|
|
|
|
return decoder.Decode(receiver)
|
|
|
|
@@ -49,7 +49,7 @@ func (oj *ownJSON) UnmarshalWithNumber(byteData []byte, receiver interface{}) er
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 20:46 2023/12/24
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberIgnoreError(byteData []byte, receiver interface{}) {
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberIgnoreError(byteData []byte, receiver any) {
|
|
|
|
|
_ = oj.UnmarshalWithNumber(byteData, receiver)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -58,7 +58,7 @@ func (oj *ownJSON) UnmarshalWithNumberIgnoreError(byteData []byte, receiver inte
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 8:43 下午 2021/9/14
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberForIOReader(ioReader io.ReadCloser, receiver interface{}) error {
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberForIOReader(ioReader io.ReadCloser, receiver any) error {
|
|
|
|
|
decoder := json.NewDecoder(ioReader)
|
|
|
|
|
decoder.UseNumber()
|
|
|
|
|
return decoder.Decode(receiver)
|
|
|
|
@@ -69,7 +69,7 @@ func (oj *ownJSON) UnmarshalWithNumberForIOReader(ioReader io.ReadCloser, receiv
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 20:47 2023/12/24
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberForIOReaderIgnoreError(ioReader io.ReadCloser, receiver interface{}) {
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberForIOReaderIgnoreError(ioReader io.ReadCloser, receiver any) {
|
|
|
|
|
_ = oj.UnmarshalWithNumberForIOReader(ioReader, receiver)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
@@ -79,7 +79,7 @@ func (oj *ownJSON) UnmarshalWithNumberForIOReaderIgnoreError(ioReader io.ReadClo
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 21:50 2023/7/22
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberForString(input string, receiver interface{}) error {
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberForString(input string, receiver any) error {
|
|
|
|
|
return oj.UnmarshalWithNumber([]byte(input), receiver)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -88,7 +88,7 @@ func (oj *ownJSON) UnmarshalWithNumberForString(input string, receiver interface
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 20:48 2023/12/24
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberForStringIgnoreError(input string, receiver interface{}) {
|
|
|
|
|
func (oj *ownJSON) UnmarshalWithNumberForStringIgnoreError(input string, receiver any) {
|
|
|
|
|
oj.UnmarshalWithNumberIgnoreError([]byte(input), receiver)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -97,7 +97,7 @@ func (oj *ownJSON) UnmarshalWithNumberForStringIgnoreError(input string, receive
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 21:56 2023/7/22
|
|
|
|
|
func (oj *ownJSON) MarshalForByte(input interface{}) []byte {
|
|
|
|
|
func (oj *ownJSON) MarshalForByte(input any) []byte {
|
|
|
|
|
buffer := bytes.NewBuffer([]byte{})
|
|
|
|
|
encoder := json.NewEncoder(buffer)
|
|
|
|
|
encoder.SetEscapeHTML(false)
|
|
|
|
@@ -110,7 +110,7 @@ func (oj *ownJSON) MarshalForByte(input interface{}) []byte {
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 21:56 2023/7/22
|
|
|
|
|
func (oj *ownJSON) MarshalForString(input interface{}) string {
|
|
|
|
|
func (oj *ownJSON) MarshalForString(input any) string {
|
|
|
|
|
return string(oj.MarshalForByte(input))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -119,7 +119,7 @@ func (oj *ownJSON) MarshalForString(input interface{}) string {
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 18:25 2023/12/29
|
|
|
|
|
func (oj *ownJSON) Transition(input interface{}, receiver interface{}) error {
|
|
|
|
|
func (oj *ownJSON) Transition(input any, receiver any) error {
|
|
|
|
|
return oj.UnmarshalWithNumber(oj.MarshalForByte(input), receiver)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -128,7 +128,7 @@ func (oj *ownJSON) Transition(input interface{}, receiver interface{}) error {
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 16:57 2024/1/10
|
|
|
|
|
func (oj *ownJSON) TransitionIgnoreError(input interface{}, receiver interface{}) {
|
|
|
|
|
func (oj *ownJSON) TransitionIgnoreError(input any, receiver any) {
|
|
|
|
|
_ = oj.UnmarshalWithNumber(oj.MarshalForByte(input), receiver)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -137,15 +137,15 @@ func (oj *ownJSON) TransitionIgnoreError(input interface{}, receiver interface{}
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 16:48 2024/1/10
|
|
|
|
|
func (oj *ownJSON) MergeDataForMap(ignoreError bool, dataList ...interface{}) (map[string]interface{}, error) {
|
|
|
|
|
res := make(map[string]interface{})
|
|
|
|
|
func (oj *ownJSON) MergeDataForMap(ignoreError bool, dataList ...any) (map[string]any, error) {
|
|
|
|
|
res := make(map[string]any)
|
|
|
|
|
for _, data := range dataList {
|
|
|
|
|
if nil == data {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
var (
|
|
|
|
|
err error
|
|
|
|
|
itemRes map[string]interface{}
|
|
|
|
|
itemRes map[string]any
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if err = oj.Transition(data, &itemRes); nil != err {
|
|
|
|
@@ -167,7 +167,7 @@ func (oj *ownJSON) MergeDataForMap(ignoreError bool, dataList ...interface{}) (m
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 17:00 2024/1/10
|
|
|
|
|
func (oj *ownJSON) MergeDataForMapIgnoreError(dataList ...interface{}) map[string]interface{} {
|
|
|
|
|
func (oj *ownJSON) MergeDataForMapIgnoreError(dataList ...any) map[string]any {
|
|
|
|
|
res, _ := oj.MergeDataForMap(true, dataList)
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
@@ -177,7 +177,7 @@ func (oj *ownJSON) MergeDataForMapIgnoreError(dataList ...interface{}) map[strin
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 17:07 2024/1/10
|
|
|
|
|
func (oj *ownJSON) MergeDataForReceiver(receiver interface{}, dataList ...interface{}) error {
|
|
|
|
|
func (oj *ownJSON) MergeDataForReceiver(receiver any, dataList ...any) error {
|
|
|
|
|
res, err := oj.MergeDataForMap(false, dataList)
|
|
|
|
|
if nil != err {
|
|
|
|
|
return err
|
|
|
|
@@ -193,7 +193,7 @@ func (oj *ownJSON) MergeDataForReceiver(receiver interface{}, dataList ...interf
|
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
|
//
|
|
|
|
|
// Date : 5:45 下午 2021/11/5
|
|
|
|
|
func (oj *ownJSON) ConsoleOutput(data interface{}) {
|
|
|
|
|
func (oj *ownJSON) ConsoleOutput(data any) {
|
|
|
|
|
var out bytes.Buffer
|
|
|
|
|
switch reflect.TypeOf(data).Kind() {
|
|
|
|
|
case reflect.Slice:
|
|
|
|
|