You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
418 B
27 lines
418 B
package http |
|
|
|
import ( |
|
"go-common/app/interface/openplatform/seo/model" |
|
bm "go-common/library/net/http/blademaster" |
|
) |
|
|
|
func itemInfo(c *bm.Context) { |
|
logUA(c) |
|
|
|
arg := new(model.ArgItemID) |
|
if err := c.Bind(arg); err != nil { |
|
return |
|
} |
|
|
|
bot := isBot(c) |
|
res, err := srv.GetItem(c, arg.ID, bot) |
|
if err != nil { |
|
c.String(0, "%v", err) |
|
return |
|
} |
|
|
|
if setCache(c, res) { |
|
return |
|
} |
|
c.String(0, string(res)) |
|
}
|
|
|