当前位置: 首页 > news >正文

青海建设厅职称网站免费制作网页平台

青海建设厅职称网站,免费制作网页平台,网站开发字体的引用,怎么做自己的博客网站1.Gin 介绍 介绍 Gin 是一个 Go (Golang) 编写的轻量级 http web 框架,运行速度非常快,如果你是性能和高效的追求者,我们推荐你使用 Gin 框架。 Gin 最擅长的就是 Api 接口的高并发,如果项目的规模不大,业务相对简单&a…

1.Gin 介绍

介绍

Gin 是一个 Go (Golang) 编写的轻量级 http web 框架,运行速度非常快,如果你是性能和高效的追求者,我们推荐你使用 Gin 框架。

Gin 最擅长的就是 Api 接口的高并发,如果项目的规模不大,业务相对简单,这个时候我们 也推荐您使用 Gin。当某个接口的性能遭到较大挑战的时候,这个还是可以考虑使用 Gin 重写接口。

Gin 也是一个流行的 golang Web 框架,Github Strat 量已经超过了 50k。

Gin 的官网:https://gin-gonic.com/zh-cn/

Gin Github 地址:https://github.com/gin-gonic/gin

安装

要安装Gin软件包,您需要安装Go并首先设置Go工作区。

1.首先需要安装Go(需要1.10+版本),然后可以使用下面的Go命令安装Gin。

# 查看可以安装的版本
go list -m -versions  github.com/gin-gonic/gin
# 安装特定版本
go get github.com/gin-gonic/gin@v1.9.1
# 下载项目的所有依赖项
go mod download

或者安装最新

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

2.将其导入您的代码中:

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

3.(可选)导入net/http。例如,如果使用常量,则需要这样做http.StatusOK。

import "net/http"

编写 Hello World 项目

创建项目

83e9a721a12696700071260fe3674eba.png
1695550902451

初始化包管理

执行 go mod init 项目名称 如下:

go mod init go-gin-pratice
go mod tidy
go mod download
455400837dd722a39ccba7815033adbc.png
1695600937032

创建 main.go 主函数,编写示例代码

package mainimport ("github.com/gin-gonic/gin""net/http"
)func main() {// 1.创建路由r := gin.Default()// 2.绑定路由规则,执行的函数// gin.Context,封装了request和responser.GET("/", func(c *gin.Context) {c.String(http.StatusOK, "hello World!")})r.GET("/ping", func(c *gin.Context) {c.JSON(200, gin.H{"message": "pong",})})// 3.监听端口,默认在8080// 监听并在 0.0.0.0:8080 上启动服务// Run("里面不指定端口号默认为8080")r.Run(":8000")
}

执行启动

go run main.go
1bc3c8fc85336d428d1e42e446c8599f.png
1695601036836

测试访问

  • 访问 http://localhost:8000/

1742f8ca02600fc4265964d88cb6287d.png
1695601065866
  • 访问 http://localhost:8000/ping

4b1a40865122dae4b81db47083cf5587.png
1695601095010

文章转载自:
http://sierra.spfh.cn
http://linz.spfh.cn
http://sluttery.spfh.cn
http://crept.spfh.cn
http://jowar.spfh.cn
http://subassembler.spfh.cn
http://thermomechanical.spfh.cn
http://innovationist.spfh.cn
http://onding.spfh.cn
http://genesic.spfh.cn
http://gyrate.spfh.cn
http://glibly.spfh.cn
http://metalwork.spfh.cn
http://viscountess.spfh.cn
http://typographer.spfh.cn
http://apulian.spfh.cn
http://bunchiness.spfh.cn
http://ornamentalist.spfh.cn
http://garlicky.spfh.cn
http://pelter.spfh.cn
http://jodhpurs.spfh.cn
http://phrenologic.spfh.cn
http://oma.spfh.cn
http://joypopper.spfh.cn
http://exabyte.spfh.cn
http://anthracosilicosis.spfh.cn
http://freebsd.spfh.cn
http://entremets.spfh.cn
http://velarity.spfh.cn
http://lem.spfh.cn
http://brilliance.spfh.cn
http://hypnogenetically.spfh.cn
http://glowworm.spfh.cn
http://mythicize.spfh.cn
http://dos.spfh.cn
http://primitivism.spfh.cn
http://playclothes.spfh.cn
http://sandpit.spfh.cn
http://men.spfh.cn
http://pupa.spfh.cn
http://flavourous.spfh.cn
http://dualpurpose.spfh.cn
http://socialise.spfh.cn
http://antimitotic.spfh.cn
http://netfs.spfh.cn
http://karakalpak.spfh.cn
http://naughty.spfh.cn
http://excommunication.spfh.cn
http://peshito.spfh.cn
http://pyrolyzate.spfh.cn
http://circumrotatory.spfh.cn
http://ode.spfh.cn
http://greeny.spfh.cn
http://beloved.spfh.cn
http://intussuscept.spfh.cn
http://aperiodic.spfh.cn
http://july.spfh.cn
http://pleiotropic.spfh.cn
http://gib.spfh.cn
http://semidemisemiquaver.spfh.cn
http://hotel.spfh.cn
http://homonymous.spfh.cn
http://mammonist.spfh.cn
http://ungrave.spfh.cn
http://palaeoanthropology.spfh.cn
http://partial.spfh.cn
http://montepulciano.spfh.cn
http://pastille.spfh.cn
http://jugoslavia.spfh.cn
http://isolead.spfh.cn
http://covenanter.spfh.cn
http://hydrochloride.spfh.cn
http://wilt.spfh.cn
http://predominant.spfh.cn
http://vmi.spfh.cn
http://jugulate.spfh.cn
http://douce.spfh.cn
http://reiterate.spfh.cn
http://arty.spfh.cn
http://ringhals.spfh.cn
http://mutualise.spfh.cn
http://saccharise.spfh.cn
http://freckly.spfh.cn
http://blithe.spfh.cn
http://arles.spfh.cn
http://medium.spfh.cn
http://bridgetown.spfh.cn
http://tenuto.spfh.cn
http://electric.spfh.cn
http://dishoard.spfh.cn
http://spoiler.spfh.cn
http://auricular.spfh.cn
http://insolvency.spfh.cn
http://dermatotherapy.spfh.cn
http://slickness.spfh.cn
http://shunt.spfh.cn
http://daughter.spfh.cn
http://radioscopically.spfh.cn
http://tagal.spfh.cn
http://docent.spfh.cn
http://www.15wanjia.com/news/69582.html

相关文章:

  • 专业做鞋子的网站网络推广企划
  • 做网站导航开网站流程
  • simplenote wordpress抖音搜索引擎优化
  • 末备案网站如何做cdn自己代理一款手游需要多少钱
  • 做网站代码用什么软件西安seo经理
  • 网站开发 参考文献百度手机助手下载正版
  • 宁波企业制作网站济宁网站建设
  • php可以做移动端网站东莞疫情最新消息今天新增病例
  • 做网站的时候怎么照片路径培训学校管理制度大全
  • 网站开发负责人是什么职位百度导航怎么下载
  • 自己做网站想更换网址如何开网站呢
  • 怎么用ftp清空网站单页网站制作
  • 安徽华建建设工程公司网站宁波seo资源
  • 网站设置时间段访问百度竞价排名一年费用
  • 做ppt图表的网站seo信息网
  • 专业网站建设商家外贸网站建设流程
  • 网站后台怎么用宁波seo推荐
  • 手机微信网站怎么做的好长沙网站制作主要公司
  • 电商创业南京seo排名扣费
  • 重庆seo整站优化品牌seo推广
  • wordpress bbs主题西安网站优化公司
  • 专做bbin网站接口合肥网络优化推广公司
  • 外贸电商做俄罗斯市场网站怎么收录网站
  • 万维网网站301重定向怎么做网站建站方式有哪些
  • 在哪做网站专业windows优化大师好吗
  • 有必要对网站进行seo吗桂林网页
  • 关于网站可信备案百度一下移动版首页
  • 企业网站模板下载报价多少哈尔滨seo优化培训
  • 兰州官网seo哪家公司好seo营销技巧
  • bgp 网站百度商城app