go语言web框架,gin基础一,获取json及字符串数据,定义结构体

1、导入所需的包

package main

import (
	"github.com/gin-gonic/gin"
	"net/http"
)

2、定义结构体

type Examplecontent struct {
	Title   string `json:"title"`
	Content string `json:"content"`
	Number  string
}

3、定义main函数,定义路由入口

func main() {
	r := gin.Default()
	r.GET("index", getdataw)

	r.GET("getjson", getjson)

	r.GET("getjson2", getjson2)

	r.Run(":8090")
}

4、返回字符串结果

func getdataw(c *gin.Context) {
	c.String(200, "值:%v", "hello")
}

5、返回jsonp结果

func getjson(c *gin.Context) {
	c.JSONP(200, gin.H{
		"success": true,
		"data":    "datas",
	})
}

6、通过结构体返回json结果

func getjson2(c *gin.Context) {
	example := Examplecontent{
		Title:   "典型案例",
		Number:  "123",
		Content: "测试案件详细",
	}
	c.JSON(http.StatusOK, example)
}

你可能感兴趣的:(golang,gin,json,go语言)