package handler import ( "net/http" "reflect" "fusenapi/utils/basic" "fusenapi/server/shopping-cart/internal/logic" "fusenapi/server/shopping-cart/internal/svc" "fusenapi/server/shopping-cart/internal/types" ) func CalculateCartPriceHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { var req types.CalculateCartPriceReq userinfo, err := basic.RequestParse(w, r, svcCtx, &req) if err != nil { return } // 创建一个业务逻辑层实例 l := logic.NewCalculateCartPriceLogic(r.Context(), svcCtx) rl := reflect.ValueOf(l) basic.BeforeLogic(w, r, rl) resp := l.CalculateCartPrice(&req, userinfo) if !basic.AfterLogic(w, r, rl, resp) { basic.NormalAfterLogic(w, r, resp) } } }