当前位置: 首页 > 工具软件 > Iris-Go > 使用案例 >

【Golang】使用Iris

施恩
2023-12-01

官方文档:https://www.iris-go.com/docs

安装Iris

首先,创建一个项目文件夹——hello-server,在文件夹中输入以下命令。

E:\hello-server>go mod init hello-server
E:\hello-server>go get github.com/kataras/iris/v12@master

如果遇到网络错误,就输入以下命令。

E:\hello-server>go env -w GOPROXY=https://goproxy.cn,https://gocenter.io,https://goproxy.io,direct

搭建一个简单的服务端

打开这个项目,新建一个main文件夹,并在其下创建hello.go文件,并在该文件中写入以下代码。

package main

import "github.com/kataras/iris/v12"

func main() {
    app := iris.Default()

    app.Get("/", func(ctx iris.Context) {
        ctx.WriteString("Hello World!")
    })

    app.Listen(":8080")
}

运行这个程序。

E:\hello-server\main> go run .\hello.go

打开浏览器,输入urlhttp://localhost:8080/,然后我们便可以看到网页上打印了一行“Hello World!”。

 类似资料: