Merge branch 'meixiongfeng' of http://git.legu.cc/liwei_3d/go_dreamfactory into meixiongfeng

This commit is contained in:
meixiongfeng 2022-12-20 17:08:51 +08:00
commit a4c6a8a64a

View File

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