首頁  >  文章  >  後端開發  >  如何在 Golang 中使用 MongoDB 在 JSON 回應中包含嵌入式結構欄位?

如何在 Golang 中使用 MongoDB 在 JSON 回應中包含嵌入式結構欄位?

Patricia Arquette
Patricia Arquette原創
2024-11-09 11:01:02664瀏覽

How to Include Embedded Struct Fields in JSON Response with MongoDB in Golang?

使用MongoDB 在Golang 中嵌入結構

在Golang 中,嵌入結構是一種透過將結構嵌套在另一個結構中來擴展結構功能的技術結構。但是,在使用嵌入式結構和 MongoDB 時,可能會出現某些挑戰。

問題:從JSON 回應排除巢狀欄位

考慮以下User 結構:

type User struct {
  Id      bson.ObjectId `json:"id,omitempty" bson:"_id,omitempty"`
  Name    string        `json:"name,omitempty" bson:"name,omitempty"`
  Secret  string        `json:"-,omitempty" bson:"secret,omitempty"`
}

使用json:"-" 將Secret字段從JSON 表示中排除。這在大多數不應洩露秘密資訊的情況下很有用。

困境:管理路由和嵌入式結構

為管理員提供對秘密字段的訪問權限,創建一個adminUser 結構,其中包含User 結構作為嵌入字段:

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

但是,此方法僅傳回Secret 字段,因為嵌入的User 字段將被忽略。

解決方案:bson 內聯標誌

為了解決此問題,bson 套件提供了一個內聯標誌,允許在JSON 序列化和MongoDB 文件解碼中包含嵌入字段。

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

透過此修改,adminUser 中的 User 欄位(不包括 Secret)和 Secret 欄位都將包含在 JSON 回應和 MongoDB 文件中。

替代方法

或者,可以考慮從 User 結構中刪除 Secret 字段,只將其包含在 adminUser 結構中。這簡化了資料模型,並確保只有授權管理員才能將機密寫入資料庫或從資料庫中讀取。

以上是如何在 Golang 中使用 MongoDB 在 JSON 回應中包含嵌入式結構欄位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn