我使用gin框架编写了一个web服务(golang)来接收json正文格式的参数。我提出这样的请求:
curl --location 'http://foo.bar/test' \ --header 'content-type: application/json' \ --data'{ "a": "1", "b": "2" }'
现在,我添加了一个中间件,它将所有请求参数打印到日志文件中,该文件在控制器之上运行一层。注意,中间件层不知道参数的具体类型。当我读取正文并打印日志时,我得到以下结果:
[2023/06/20 11:44:38 cst] [info] (.../infra/log.info:18) request_in||traceid=xx||spanid=xxx||path=/test||body= { "a": "1", "b": "2" }
我期望这样的事情:
[2023/06/20 11:44:38 CST] [INFO] (/infra/log.Info:18) request_in||traceid=xx||spanid=xxx||path=/test||body={"a ":"1","b":"2"}
请问:如何去掉正文中的空格和换行符?注意,这个例子中的body参数比较简单,但实际情况会更复杂。谢谢。
您可以使用以下方法替换正文中的空格和换行符。
使用 strings.replaceall()
requestbodybytes, err := c.getrawdata() if err != nil { // handle this } body := string(requestbodybytes) body = strings.replaceall(body, "\n", "") body = strings.replaceall(body, " ", "") fmt.printf("body=%v \n", body)
当您需要通过在到达控制器之前删除空格和行来更改请求正文时,可以使用此方法。
使用编组
requestBodyBytes, err := c.GetRawData() if err != nil { // Handle this } var data interface{} json.Unmarshal(requestBodyBytes, &data) marshalledBytes, err := json.Marshal(data) if err != nil { // Handle this } fmt.Printf("body=%v \n", string(marshalledBytes))
当您只需要删除空格和行以进行记录时,请使用此功能。
以上是golang:如何删除请求正文中的空格和换行符的详细内容。更多信息请关注PHP中文网其他相关文章!