欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

golang开发微框架Gin的安装测试及简介

程序员文章站 2022-06-16 21:27:39
目录概述安装测试导包步骤切换输出的格式状态码示例前端概述gin是一个golang的微框架,封装比较优雅,api友好。具有快速灵活,容错方便等特点。gin自身的net/http足够简单,性能也非常不错g...

概述

gin是一个golang的微框架,封装比较优雅,api友好。具有快速灵活,容错方便等特点。gin自身的net/http足够简单,性能也非常不错

gin下载: https://github.com/gin-gonic/gin
英文文档:https://gin-gonic.com/docs/

安装

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

测试

导包

import "github.com/gin-gonic/gin"   
import "net/http"   //项目中使用了 http.statusok

步骤

注册一个路由器

router := gin.default()

注册路由处理

router.get("/", func(c *gin.context) {
   c.string(http.statusok, "hello world")
})

运行(默认是8080端口)

if true{
  router.run()  //默认端口:8080     http://localhost
}else{
  router.run(":9999")  //指端端口:9999    http://localhost:9999
}

切换输出的格式

返回json格式

func (c *context) json(code int, obj interface{})

返回xml格式

func (c *context) xml(code int, obj interface{})

返回yaml格式

func (c *context) yaml(code int, obj interface{})

返回string格式

func (c *context) string(code int, format string, values ...interface{})

渲染html模板后返回

func (c *context) html(code int, name string, obj interface{})

状态码

这个状态码不仅可以手动指定一个数字,比如200,500,404;也可以使用http包中的状态码,语义化的状态码更好理解;

http-status文档:http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
http状态码详解:http://tool.oschina.net/commons?type=5

http状态码的分类

分类 描述
1** 信息,服务器收到请求,需要请求者继续执行操作
2** 成功,操作被成功接收并处理
3** 重定向,需要进一步的操作以完成请求
4** 客户端错误,请求包含语法错误或无法完成请求
5** 服务器错误,服务器在处理请求的过程中发生了错误

常用的状态码

200 请求成功
404 请求失败,服务器无法根据客户端的请求找到资源(网页)
500 服务器内部错误,无法完成请求

项目中导入

import "net/http"
package http

const (  
    statusok                   = 200 // rfc 7231, 6.3.1
    statusmultiplechoices   = 300 // rfc 7231, 6.4.1
    statusnotfound                     = 404 // rfc 7231, 6.5.4
    statusinternalservererror           = 500 // rfc 7231, 6.6.1
)

示例

package main
import(
  "github.com/gin-gonic/gin"
  "net/http"
  "fmt"
)
func main() {
  //1. 注册一个路由器
  router := gin.default()
  //2. 注册路由处理
  //默认请求  http://localhost:8080/
  router.get("/", func(c *gin.context) {
     c.string(http.statusok, fmt.sprintln(gin.h{"data":"默认请求"}))
  })
  //post 请求  string 格式话   http://localhost:8080/string
  router.get("/string", func(c *gin.context) {
     c.string(http.statusok, fmt.sprintln("post 请求  string 格式话"))
  })
  //post 请求  json 格式话    http://localhost:8080/json
  router.post("/json",func (c *gin.context)  {
    c.json(http.statusok,gin.h{"name":"post 请求  json 格式话","age":18})
  })
  //delete 请求 xml 格式化   http://localhost:8080/xml
  router.delete("/xml",func (c *gin.context)  {
    c.xml(http.statusok,gin.h{"name":"delete 请求 xml 格式化","age":18})
  })
  //patch 请求  yaml 格式化   http://localhost:8080/yaml
  router.patch("/yaml",func (c *gin.context)  {
    c.yaml(http.statusok,gin.h{"name":"patch 请求 yaml 格式化","age":18})
  })
  //get请求 html界面显示   http://localhost:8080/html
  router.get("/html",func (c *gin.context)  {
    router.loadhtmlglob("../view/tem/index/*")  //这是前台的index
    // router.loadhtmlglob("../view/tem/admin/*")  //这是后台的index
    // router.loadhtmlfiles("../view/tem/index.html")  //指定加载某些文件
    c.html(http.statusok,"index.html",nil)
  })
  //3. 运行(默认是8080端口)
  router.run()
}

前端

路径:$gopath/src/view/tem/index/

<!doctype html>
<html lang="zh-cn" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    <h1>前端 index</h1>
  </body>
</html>

以上就是golang微框架gin的安装测试及简介的详细内容,更多关于gin安装测试及简介的资料请关注其它相关文章!