You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
685 B
Smarty
24 lines
685 B
Smarty
package {{.PkgName}}
|
|
|
|
import (
|
|
"net/http"
|
|
"live-service/common/response"
|
|
|
|
{{if .After1_1_10}}"github.com/zeromicro/go-zero/rest/httpx"{{end}}
|
|
{{.ImportPackages}}
|
|
)
|
|
|
|
func {{.HandlerName}}(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
{{if .HasRequest}}var req types.{{.RequestType}}
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
httpx.Error(w, err)
|
|
return
|
|
}
|
|
|
|
{{end}}l := {{.LogicName}}.New{{.LogicType}}(r.Context(), svcCtx)
|
|
{{if .HasResp}}resp, {{end}}err := l.{{.Call}}({{if .HasRequest}}&req{{end}})
|
|
{{if .HasResp}}response.Response(r, w, resp, err){{else}}response.Response(r, w, nil, err){{end}}
|
|
}
|
|
}
|