gpt4 book ai didi

validation - 接口(interface)转换 : interface {} is nil, not validator.ValidationErrors

转载 作者:行者123 更新时间:2023-12-01 22:46:07 25 4
gpt4 key购买 nike

我正在尝试使用名为 [validator][1] 的 Go 库创建 CRUD 并验证我的请求正文
验证码示例:

func (v *Validation) Validate(i interface{}) ValidationErrors {
errs := v.validate.Struct(i).(validator.ValidationErrors) // panic originates here

if len(errs) == 0 {
return nil
}

var returnErrs []ValidationError
for _, err := range errs {
// cast the FieldError into our ValidationError and append to the slice
ve := ValidationError{err.(validator.FieldError)}
returnErrs = append(returnErrs, ve)
}

return returnErrs
}
上述验证器适用于无效请求正文,例如无效 ID。
但是对于一个有效的 body ,它会引发 panic
堆栈跟踪:
products-api 2020/07/12 15:15:11 http: panic serving 127.0.0.1:33288: interface conversion: error is nil, not validator.ValidationErrors
goroutine 21 [running]:
net/http.(*conn).serve.func1(0xc0003b6140)
/usr/local/go/src/net/http/server.go:1772 +0x139
panic(0x93d6c0, 0xc0003845d0)
/usr/local/go/src/runtime/panic.go:973 +0x3e3
github.com/AymanArif/golang-microservices/data.(*Validation).Validate(0xc0005a8108, 0x8f3480, 0xc0005aa2c0, 0x0, 0x0, 0x203000)
/home/ayman/Desktop/golang-microservices/data/validation.go:70 +0x211

interface conversion: interface conversion: error is nil, not validator.ValidationErrors
创建 REST 逻辑:
func (p *Products) Create(rw http.ResponseWriter, r *http.Request) {
prod := r.Context().Value(KeyProduct{}).(data.Product) // Panic originate here. Check below for struct definiton

p.l.Printf("[DEBUG] Inserting product: %#v\n", prod)
data.AddProduct(prod)
}

// data.Product
type Product struct {

ID int `json:"id"` // Unique identifier for the product

Name string `json:"name" validate:"required"`

Description string `json:"description"`

SKU string `json:"sku" validate:"sku"`
}
如何对正确的请求进行错误处理?
[1]: https://github.com/go-playground/validator

最佳答案

你得到的错误是 Eloquent :interface conversion: interface {} is *data.Product, not data.Productr.Context().Value(KeyProduct{})返回接口(interface)类型 interface{} ,错误告诉你,它持有一个具体类型的值 *data.Product (指向 data.Product 的指针)
相反,您正试图将其转换为 data.Product ,而不检查转换是否有效。
将行替换为:

prod := r.Context().Value(KeyProduct{}).(*data.Product)
您可能想阅读关于 type assertions 的 Go Tour .

更新后,您现在遇到的错误仍然是同类问题: interface conversion: error is nil, not validator.ValidationErrors使用表达式 err.(validator.FieldError)您正在尝试转换 errvalidator.FieldErrorerr实际上是 nil .
上一次检查 len(errs) == 0仅验证 errs长度不为零,但 slice 可能具有非零长度并包含 nil值(value)观。
您可以改为 测试类型断言:
if fe, ok := err.(validator.FieldError); ok {
ve := ValidationError{fe}
returnErrs = append(returnErrs, ve)
}

关于validation - 接口(interface)转换 : interface {} is nil, not validator.ValidationErrors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62847567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com