This commit is contained in:
meixiongfeng 2022-12-20 17:02:04 +08:00
commit a969335216

View File

@ -168,6 +168,11 @@ func (this *Context) Get(key string) (value interface{}, exists bool) {
return
}
func (this *Context) QueryArray(key string) (values []string) {
values, _ = this.GetQueryArray(key)
return
}
/*
如果存在MustGet 返回给定键的值否则抛出异常
*/