json: Add UnmarshalDisallowUnknownFields

This commit is contained in:
世界 2024-07-22 12:02:46 +08:00
parent 332e470075
commit 7893a74f75
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 37 additions and 1 deletions

View file

@ -0,0 +1,12 @@
package json
func UnmarshalDisallowUnknownFields(data []byte, v any) error {
var d decodeState
d.disallowUnknownFields = true
err := checkValid(data, &d.scan)
if err != nil {
return err
}
d.init(data)
return d.unmarshal(v)
}