我如何获得被送来的尸体?
package main
import (
"fmt"
"github.com/gin-gonic/gin"
)
func main() {
fmt.Println("Hello, world!")
r := gin.Default()
r.POST("/", func(c *gin.Context) {
body := c.Request.Body
c.JSON(200,body);
})
r.Run(":8080");
}
通过邮递员提出请求
{
"email": "test@gmail.com",
"password": "test"
}
作为回应,我得到空的json {}该怎么办?
GCT1015
相关分类