package main
import (
"github.com/gin-gonic/gin"
)
func sayHello(c *gin.Context) {
c.JSON(200,gin.H{
"message":"Hello golang",
})
}
func main() {
//获取路由引擎
engine := gin.Default()//返回默认的路由引擎
//
engine.GET("hello",sayHello)
//// 启动HTTP服务,默认在0.0.0.0:8080启动服务
engine.GET("/book", func(context *gin.Context) {
context.JSON(200,gin.H{
"method": "GET",
})
})
engine.POST("/book", func(context *gin.Context) {
context.JSON(200,gin.H{
"method": "POST",
})
})
engine.PUT("/book", func(context *gin.Context) {
context.JSON(200,gin.H{
"method": "PUT",
})
})
engine.DELETE("/book", func(context *gin.Context) {
context.JSON(200,gin.H{
"method": "DELETE",
})
})
engine.Run()
}
有疑问加站长微信联系(非本文作者)