mirror of
https://github.com/beego/bee.git
synced 2024-11-22 05:00:54 +00:00
兼容query中的日期、时间参数。如:query=xxTime.lt:2016-01-01T23:22:21+08:00
This commit is contained in:
parent
11571b4af2
commit
4edf273341
@ -255,7 +255,7 @@ func (c *{{controllerName}}Controller) GetAll() {
|
||||
// query: k:v,k:v
|
||||
if v := c.GetString("query"); v != "" {
|
||||
for _, cond := range strings.Split(v, ",") {
|
||||
kv := strings.Split(cond, ":")
|
||||
kv := strings.SplitN(cond, ":", 2)
|
||||
if len(kv) != 2 {
|
||||
c.Data["json"] = errors.New("Error: invalid query key/value pair")
|
||||
c.ServeJSON()
|
||||
|
Loading…
Reference in New Issue
Block a user