详解Golang Iris框架的基本使用
iris介绍
编写一次并在任何地方以最小的机器功率运行,如android、ios、linux和windows等。它支持google go,只需一个可执行的服务即可在所有平台。 iris以简单而强大的api而闻名。 除了iris为您提供的低级访问权限。 iris同样擅长mvc。 它是唯一一个拥有mvc架构模式丰富支持的go web框架,性能成本接近于零。 iris为您提供构建面向服务的应用程序的结构。 用iris构建微服务很容易。
1. iris框架
1.1 golang框架
golang常用框架有:gin、iris、beego、buffalo、echo、revel,其中gin、beego和iris较为流行。iris是目前流行golang框架中唯一提供mvc支持(实际上iris使用mvc性能会略有下降)的框架,并且支持依赖注入,使用入门简单,能够快速构建web后端,也是目前几个框架中发展最快的,从2016年截止至目前总共有17.4k stars(gin 35k stars)。
iris is a fast, simple yet fully featured and very efficient web framework for go. it provides a beautifully expressive and easy to use foundation for your next website or api.
1.2 安装iris
iris官网:https://iris-go.com/
iris github:https://github.com/kataras/iris
2. 使用iris构建服务端
2.1 简单例子1——直接返回消息
其他便捷设置方法:
我们可以看到iris.default()的源码:
2.2 简单例子2——使用html模板
上述例子使用的hello.html模板
2.3 路由处理
上述例子中路由处理,可以使用下面简单替换,分别针对http中的各种方法
例如,使用路由“/hello”的get路径
2.4 使用中间件
2.5 使用文件记录日志
整个application使用文件记录
上述记录日志
到文件可以和中间件结合,以控制不必要的调试信息记录到文件
上述方法只能打印statuscode为200的路由请求,如果想要打印其他状态码请求,需要另使用
iris有十分强大的路由处理程序,你能够按照十分灵活的语法设置路由路径,并且如果没有涉及正则表达式,iris会计算其需求预先编译索引,用十分小的性能消耗来完成路由处理。
注:ctx.params()和ctx.values()是不同的,下面是官网给出的解释:
path parameter's values can be retrieved from ctx.params()context's local storage that can be used to communicate between handlers and middleware(s) can be stored to ctx.values() .
iris可以使用的参数类型
param type | go type | validation | retrieve helper |
---|---|---|---|
:string | string | anything (single path segment) | params().get |
:int | int | -9223372036854775808 to 9223372036854775807 (x64) or -2147483648 to 2147483647 (x32), depends on the host arch | params().getint |
:int8 | int8 | -128 to 127 | params().getint8 |
:int16 | int16 | -32768 to 32767 | params().getint16 |
:int32 | int32 | -2147483648 to 2147483647 | params().getint32 |
:int64 | int64 | -9223372036854775808 to 92233720368?4775807 | params().getint64 |
:uint | uint | 0 to 18446744073709551615 (x64) or 0 to 4294967295 (x32), depends on the host arch | params().getuint |
:uint8 | uint8 | 0 to 255 | params().getuint8 |
:uint16 | uint16 | 0 to 65535 | params().getuint16 |
:uint32 | uint32 | 0 to 4294967295 | params().getuint32 |
:uint64 | uint64 | 0 to 18446744073709551615 | params().getuint64 |
:bool | bool | “1” or “t” or “t” or “true” or “true” or “true” or “0” or “f” or “f” or “false” or “false” or “false” | params().getbool |
:alphabetical | string | lowercase or uppercase letters | params().get |
:file | string | lowercase or uppercase letters, numbers, underscore (_), dash (-), point (.) and no spaces or other special characters that are not valid for filenames | params().get |
:path | string | anything, can be separated by slashes (path segments) but should be the last part of the route path | params().get |
在路径中使用参数
使用post传递参数
以上就是iris的基本入门使用,当然还有更多其他操作:中间件使用、正则表达式路由路径的使用、cache、cookie、session、file server、依赖注入、mvc等的用法,可以参照官方教程使用,后期有时间会写文章总结。
到此这篇关于详解golang iris框架的基本使用的文章就介绍到这了,更多相关golang iris框架使用内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!