Home > Backend Development > Golang > How to Embed a Struct in Another Struct with MongoDB in Golang Without Losing Data?

How to Embed a Struct in Another Struct with MongoDB in Golang Without Losing Data?

Susan Sarandon
Release: 2024-11-08 18:28:02
Original
487 people have browsed it

How to Embed a Struct in Another Struct with MongoDB in Golang Without Losing Data?

Embedding a Struct in Another Struct in Golang with MongoDB

In Golang, embedding a struct within another struct allows you to inherit fields from the embedded struct. However, you may encounter issues when working with embedded structs and MongoDB, potentially leading to the loss of embedded field data.

Understanding the Issue

Consider a scenario where you need to provide different JSON responses for a user resource based on the user role. One response includes a "Secret" field, which should only be displayed to admins.

In your current code, you have created separate structs for User and adminUser, with the latter containing the "Secret" field. However, embedding User into adminUser using inheritance (type adminUser struct { User; Secret string }) does not work as expected.

Solution

To resolve this issue, you can utilize the bson package's "inline" flag. By using bson:",inline", you can inline the fields of the embedded struct into the parent struct.

type adminUser struct {
    User `bson:",inline"`
    Secret string `json:"secret,omitempty" bson:"secret,omitempty"`
}
Copy after login

This approach allows you to access both fields of the User struct within the adminUser struct.

Additional Considerations

Note that using bson:",inline" can lead to duplicate key errors when reading from the database, as both structs contain the "Secret" field. To avoid this, it is recommended to remove the "Secret" field from the User struct and only include it in the adminUser struct. This ensures that the "Secret" field is only accessible through the adminUser struct, providing the desired level of control.

The above is the detailed content of How to Embed a Struct in Another Struct with MongoDB in Golang Without Losing Data?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template