Go常用库

Posted csunshine

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go常用库相关的知识,希望对你有一定的参考价值。

flag

package main

import (
	"flag"
	"github.com/kataras/iris/v12"
)

// 需要配合 flag.Parse() 使用
var port = flag.String("port", "8080", "The address to listen on for HTTP requests.")

func main() {
	flag.Parse()
	app := iris.New()
	app.Get("/", index)
	app.Listen(":" + *port)
}

func index(ctx iris.Context) {
	ctx.html("<h1>Hello, World!</h1>")
}

以上是关于Go常用库的主要内容,如果未能解决你的问题,请参考以下文章

Go语言开发Go语言常用标准库二

Go语言开发(十三)Go语言常用标准库三

Go语言开发(十六)Go语言常用标准库六

Go语言开发Go语言常用标准库一

Go语言开发(十五)Go语言常用标准库五

Go语言开发(十四)Go语言常用标准库四