recommend.go 397 B

12345678910111213141516171819
  1. package http
  2. import (
  3. "go-common/library/ecode"
  4. bm "go-common/library/net/http/blademaster"
  5. )
  6. // get season's recommend data from pgc
  7. func recommend(c *bm.Context) {
  8. req := c.Request.Form
  9. sid := req.Get("season_id")
  10. stype := req.Get("season_type")
  11. // param check
  12. if atoi(sid) == 0 || atoi(stype) == 0 {
  13. c.JSON(nil, ecode.RequestErr)
  14. return
  15. }
  16. c.JSON(tvSvc.RecomFilter(sid, stype))
  17. }