1.gin框架的基本使用
首先我们来了解一下gin框架的基本使用,简单举一个例子,输出helloword,关于gin框架的下载相关的就不概述了。上代码。
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
//生成默认路由
r := gin.Default()
// 2.绑定路由规则,执行的函数
// gin.Context,封装了request和response
r.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "hello World!")
})
// 3.监听端口,默认在8080
// Run("里面不指定端口号默认为8080")
r.Run(":8080")
}
2.gin框架发送相应请求
1.发送get请求
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
//生成默认路由
r := gin.Default()
r.GET("/", func(c *gin.Context) {
c.JSON(http.StatusOK, "填string字符串")
})
r.Run(":8080")
}
//写法二
func GoWeb_Get(c *gin.Context){
//fmt.Println("get_web is running")
c.JSON(StatusOk,"hello world")
}
func main(){
r := gin.Default()
r.GET("/",GoWeb_Get)
r.Run(":8080")
}
2.发送POST请求
post简单来说就和get一模一样,就把请求的字变一下就可以了,无非就是请求的方式不一样,上代码看看。
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
//生成默认路由
r := gin.Default()
r.POST("/", func(c *gin.Context) {
c.JSON(http.StatusOK, "填string字符串")
})
r.Run(":8080")
}
//写法二
func GoWeb_POST(c *gin.Context){
//fmt.Println("get_web is running")
c.JSON(StatusOk,"hello world")
}
func main(){
r := gin.Default()
r.POST("/",GoWeb_POST)
r.Run(":8080")
}
2.总结
简单总结一下,go发送各种的请求相较于java来说是比较简单的,剩下的PUT,DELETE那些i请求就不多说了,都差不了太多。