Files
juwan-backend/app/search/api/internal/handler/search/recommendationsHandler.go
T
2026-04-24 13:24:58 +08:00

33 lines
777 B
Go

// Code scaffolded by goctl. Safe to edit.
// goctl 1.10.1
package search
import (
"net/http"
"github.com/zeromicro/go-zero/rest/httpx"
"juwan-backend/app/search/api/internal/logic/search"
"juwan-backend/app/search/api/internal/svc"
"juwan-backend/app/search/api/internal/types"
)
// 首页推荐
func RecommendationsHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.PageReq
if err := httpx.Parse(r, &req); err != nil {
httpx.ErrorCtx(r.Context(), w, err)
return
}
l := search.NewRecommendationsLogic(r.Context(), svcCtx)
resp, err := l.Recommendations(&req)
if err != nil {
httpx.ErrorCtx(r.Context(), w, err)
} else {
httpx.OkJsonCtx(r.Context(), w, resp)
}
}
}