fusenapi/goctl_template_backend/api/handler.tpl

26 lines
592 B
Smarty
Raw Normal View History

2023-06-25 10:30:39 +00:00
package {{.PkgName}}
import (
"net/http"
2023-07-20 07:21:03 +00:00
2023-06-25 10:30:39 +00:00
"fusenapi/utils/basic"
{{.ImportPackages}}
)
func {{.HandlerName}}(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
{{if .HasRequest}}var req types.{{.RequestType}}
2023-07-20 07:21:03 +00:00
userinfo, err := basic.RequestParse(w, r, svcCtx, &req)
if err != nil {
2023-06-25 10:30:39 +00:00
return
}
2023-07-20 07:21:03 +00:00
2023-06-25 10:30:39 +00:00
// 创建一个业务逻辑层实例
{{end}}l := {{.LogicName}}.New{{.LogicType}}(r.Context(), svcCtx)
{{if .HasResp}}resp{{end}} := l.{{.Call}}({{if .HasRequest}}&req, {{end}}userinfo)
2023-07-20 07:21:03 +00:00
basic.AfterLogic(w, r, resp)
2023-06-25 10:30:39 +00:00
}
}