codecamp

Gin 快速入门

要求

Go1.13及以上版本

安装

1、下载并安装Gin

$ go get -u github.com/gin-gonic/gin

2、将Gin引入到代码中

import "github.com/gin-gonic/gin"

3、(可选)如果使用诸如​http.StatusOK​之类的常量,则需要引入​net/http​包

import "net/http"

开始

首先,创建一个名为main.go的文件

接着将如下代码写入到main.go中

package main

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

func main() {
	r := gin.Default()
	//定义路由的GET方法及响应处理函数
	r.GET("/hello", func(c *gin.Context) {
		//将发送的信息封装成JSON发送给浏览器
		c.JSON(http.StatusOK, gin.H{
			//这是我们定义的数据
			"message": "快速入门",
		})
	})
	r.Run() //默认在本地8080端口启动服务
}

然后,执行​go run main.go​命令来运行代码。在浏览器中输入127.0.0.1:8080/hello访问,结果如下

Gin快速入门


Gin 介绍
Gin RESTful API
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }