Post Request 7 – Gin Gonic Golang Web Framework

Post Request 7 – Gin Gonic Golang Web Framework

 

Source Code

 

// we are going to learn POST Request
package main
import "github.com/gin-gonic/gin"
func main() {
    // new router/server
    r := gin.Default()
    //r.LoadHTMLGlob("./templates/*")
    r.Static("/", "./")
    // Post request is like GET . first parameter is path .. 2nd is function
    r.POST("/post", func(c *gin.Context) {
        //user := c.DefaultPostForm("user", "unknown")
        // first parameter is the form field name and 2nd is default
        //c.String(200, "hello %s", user)
        //c.HTML(200, "index.tmpl", user)
        // 200 is statusCode and %s is to display string
    })
    r.Run()
}

TAGS#

gin gonic tutorial
gin-gonic / examples
gin-gonic documentation
gin framework tutorial
gin web framework
gin router
golang gin context
gin router group

###Buy Me a Coffee https://www.buymeacoffee.com/khan1

Tony BB
 

TonyBB is a Coach , marketer, hypnotist and a founder of RSKVF Production who specializes in providing simple, affordable, and easy to use solutions for Life.

Click Here to Leave a Comment Below 0 comments

Leave a Reply: