609f7d06cf
- pets-fe: 微信原生小程序(首页/计划/记录/报告/社区/引导), 服务端驱动、无假数据;弹层改用 scroll-view,打开时隐藏自定义 tabBar - pets-be: Gin + GORM(MySQL, sundynix_ 前缀) + MinIO,统一响应/分页, 微信 code2session 登录,provider-neutral AI(DeepSeek),go:embed React 后台 - 修复:分段选择类型不匹配(字符串 vs 数字)导致选不中 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
34 lines
729 B
Go
34 lines
729 B
Go
package handler
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"strconv"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/sundynix/pets-be/internal/service"
|
|
"github.com/sundynix/pets-be/pkg/errcode"
|
|
"github.com/sundynix/pets-be/pkg/response"
|
|
)
|
|
|
|
// uintParam 解析路径参数为 uint
|
|
func uintParam(c *gin.Context, key string) uint {
|
|
v, _ := strconv.ParseUint(c.Param(key), 10, 64)
|
|
return uint(v)
|
|
}
|
|
|
|
// jsonMarshal 便捷序列化
|
|
func jsonMarshal(v any) ([]byte, error) {
|
|
return json.Marshal(v)
|
|
}
|
|
|
|
// respondErr 统一错误响应:区分 not found 与内部错误
|
|
func respondErr(c *gin.Context, err error) {
|
|
if errors.Is(err, service.ErrNotFound) {
|
|
response.Fail(c, errcode.ErrNotFound, "")
|
|
return
|
|
}
|
|
response.FailErr(c, err)
|
|
}
|