去掉fmt.Println

This commit is contained in:
gazebo
2019-09-26 11:13:43 +08:00
parent d93cc09730
commit 349e9ad088
2 changed files with 2 additions and 2 deletions

View File

@@ -207,7 +207,7 @@ func (a *API) AccessStorePage2(fullURL string, params map[string]interface{}, is
fw.Write(imgData.([]byte))
}
for k, v := range params {
fmt.Println(k, " ", v)
// baseapi.SugarLogger.Debug(k, " ", v)
w.WriteField(k, url.QueryEscape(fmt.Sprint(v)))
}
w.Close()

View File

@@ -143,7 +143,7 @@ func (a *API) AccessAPI2(cmd string, isGet bool, bizParams map[string]interface{
fw.Write(imgData.([]byte))
}
for k, v := range params {
fmt.Println(k, " ", v)
// baseapi.SugarLogger.Debug(k, " ", v)
w.WriteField(k, url.QueryEscape(fmt.Sprint(v)))
}
w.Close()