hello world例子
目录结构
主目录
helloWorld
—— main.go
代码示例
main.go
package main
import (
"github.com/kataras/iris"
"github.com/kataras/iris/middleware/logger"
"github.com/kataras/iris/middleware/recover"
)
func main() {
app := iris.New()
app.Logger().SetLevel("debug")
//(可选)添加两个内置处理程序
//可以从任何与http相关的panics中恢复
//并将请求记录到终端。
app.Use(recover.New())
app.Use(logger.New())
// 请求方法: GET
// 资源标识: http://localhost:8080
app.Handle("GET", "/", func(ctx iris.Context) {
ctx.HTML("<h1>Welcome</h1>")
})
// 等同于 app.Handle("GET", "/ping", [...])
// 请求方法: GET
// 资源标识: http://localhost:8080/ping
app.Get("/ping", func(ctx iris.Context) {
ctx.WriteString("pong")
})
// 请求方法: GET
// 资源标识: http://localhost:8080/hello
app.Get("/hello", func(ctx iris.Context) {
ctx.JSON(iris.Map{"message": "Hello Iris!"})
})
// http://localhost:8080
// http://localhost:8080/ping
// http://localhost:8080/hello
app.Run(iris.Addr(":8080"), iris.WithoutServerError(iris.ErrServerClosed))
}
当前内容版权归 studyiris.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 studyiris.com .