兼容query中的日期、时间参数。如:query=xxTime.lt:2016-01-01T23:22:21+08:00

This commit is contained in:
sunqida 2016-08-18 22:46:11 +08:00
parent 11571b4af2
commit 424976201a
1 changed files with 1 additions and 1 deletions

View File

@ -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()