Go를 사용하여 JSON에 포함된 익명 구조체 평면화
제공된 코드에서 MarshalHateoas 함수는 다음과 같이 구조체의 JSON 표현을 평면화하려고 시도합니다. 익명 구조체를 Hateoas 구조체의 멤버로 포함합니다. 그러나 익명 구성원의 필드는 별도의 명명된 필드로 처리되어 바람직하지 않은 JSON 출력으로 이어집니다.
이 문제를 해결하려면 Reflect 패키지를 활용하여 포함된 구조체의 필드를 반복하고 수동으로 매핑할 수 있습니다. 평면화된 표현으로. MarshalHateoas의 수정된 버전은 다음과 같습니다.
<code class="go">import ( "encoding/json" "fmt" "reflect" ) // ... func MarshalHateoas(subject interface{}) ([]byte, error) { links := make(map[string]string) // Retrieve the unexported fields of the subject struct subjectValue := reflect.Indirect(reflect.ValueOf(subject)) subjectType := subjectValue.Type() // Iterate over the fields of the embedded anonymous struct for i := 0; i < subjectType.NumField(); i++ { field := subjectType.Field(i) name := subjectType.Field(i).Name jsonFieldName := field.Tag.Get("json") // Exclude fields with "-" JSON tag if jsonFieldName == "-" { continue } // Add field values to the flattened map links[jsonFieldName] = subjectValue.FieldByName(name).Interface().(string) } // Return the JSON-encoded map return json.MarshalIndent(links, "", " ") }</code>
익명 멤버를 동적으로 구성된 맵으로 대체함으로써 MarshalHateoas 함수는 이제 JSON 출력을 올바르게 평면화합니다.
<code class="json">{ "id": 123, "name": "James Dean", "_links": { "self": "http://user/123" } }</code>
이 솔루션은 다음을 허용합니다. 새로운 필드를 도입하거나 플랫폼별 또는 라이브러리별 트릭을 사용하지 않고 내장된 익명 멤버가 있는 구조체에서 평면화된 JSON 표현을 생성합니다.
위 내용은 Go를 사용하여 JSON에 내장된 익명 구조체를 평면화하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!