|
|
@@ -318,9 +318,13 @@ func HTTP(ctx *context.Context) { |
|
|
|
dataJson, _ := json.Marshal(ctx.Data) |
|
|
|
log.Info("dataJson=" + string(dataJson)) |
|
|
|
|
|
|
|
reqJson, _ := json.Marshal(ctx.Req) |
|
|
|
reqJson, _ := json.Marshal(ctx.Req.Form) |
|
|
|
log.Info("reqJson=" + string(reqJson)) |
|
|
|
|
|
|
|
log.Info("query go-get:" + ctx.Query("go-get")) |
|
|
|
|
|
|
|
log.Info("query service:" + ctx.Query("service")) |
|
|
|
|
|
|
|
paramJson, _ := json.Marshal(ctx.Params) |
|
|
|
log.Info("paramJson=" + string(paramJson)) |
|
|
|
|
|
|
|