go-common/app/interface/openplatform/article/http/search.go

24 lines
481 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package http
import (
"strconv"
"go-common/library/ecode"
bm "go-common/library/net/http/blademaster"
)
func segment(c *bm.Context) {
var params = c.Request.Form
idStr := params.Get("id")
content := params.Get("content")
withTagStr := params.Get("with_tag")
id, _ := strconv.Atoi(idStr)
withTag, _ := strconv.Atoi(withTagStr)
if id == 0 || content == "" {
c.JSON(nil, ecode.RequestErr)
return
}
c.JSON(artSrv.Segment(c, int32(id), content, withTag, "draft"))
}