Skip to content

Conversation

AndreiBerezin
Copy link

Исправление некорректного маршалинга с кастомным TextMarshaler у структуры.
Поведение отличалось от encoding/json

//easyjson:json
type StructWrappedTextMarshaler struct {
	Value namedWithTextMarshaler
}
type namedWithTextMarshaler string

func (n namedWithTextMarshaler) MarshalText() ([]byte, error) {
	return []byte(strings.ToUpper(string(n))), nil
}

input := StructWrappedTextMarshaler{}
marshaled, err := easyjson.Marshal(input)

и получаем {"Value":null} вместо ожидаемого {"Value":""}
encoding/json маршалит маршалит эту структуру в {"Value":""}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant