浏览代码

in progress

0x4a52466c696e74 4 月之前
父节点
当前提交
58f36812a4
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      fielder.go

+ 2 - 0
fielder.go

@@ -3,6 +3,7 @@ package rest
 import (
 	"errors"
 	"fmt"
+	"log"
 	"reflect"
 	"strings"
 
@@ -280,6 +281,7 @@ func OutFileds(req IRequestIn, obj any, files RequestFiles, names ...any) IReque
 	if err != nil {
 		return req.OutError(err)
 	}
+	log.Println("NAMES....", names)
 	return req.OutSuccess(m, files)
 }