第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Mongodb 中的投影無法正常工作

Mongodb 中的投影無法正常工作

Go
阿波羅的戰(zhàn)車 2023-07-31 15:32:02
我的 mongoDB 數(shù)據(jù)庫中有這些數(shù)據(jù)。{    "_id":"5d9ce9fd270eae22adb95d70",   ...   "isdriver":true,   "driver":{       "walletmoney":0,      "license":"6eef8271-62d7-4a1c-972a-2c40a773b35a",      "vehicle":{          "image":"b6c3619b-86e6-49d0-8734-e2c48815dfc1",         "insurance":"5f8229c4-4700-4059-8b72-9344a2bc6092",         "manufacturer":"Tesla",         "model":"Model 3",         "vin":"12345678912345678",         "year":2018      },      "verified":false      ...   }}這是我的驅(qū)動程序結(jié)構(gòu)type Driver struct {    ...    Verified         bool    `json:"verified,omitempty"`    License          string  `json:"licenseimage,omitempty"`    ...    Vehicle          Vehicle `json:"vehicle,omitempty"`}這是我的學(xué)生結(jié)構(gòu)type Student struct {    ID                primitive.ObjectID `bson:"_id,omitempty"`    ...    IsDriver          bool               `json:"isdriver,omitempty"`    Driver            Driver             `json:"driver,omitempty"`}車輛結(jié)構(gòu)type Vehicle struct {    Image        string `json:"vehicleimage,omitempty"`    Insurance    string `json:"insuranceimage,omitempty"`    VIN          string `json:"vin,omitempty"`    Manufacturer string `json:"manufacturer,omitemptyr"` <-----(Edit) Find out this is also wrong    Model        string `json:"model,omitempty"`    Year         uint16 `json:"year,omitempty"`}但我從郵遞員那里得到的答復(fù)很荒謬[    {        "vehicle": {            "manufacturer": ""        }    },    {        "vehicle": {            "manufacturer": ""        }    }]一件事是好的,作為響應(yīng),我得到了兩個對象,這很好,因為根據(jù)我的filter建議isdriver: true,我在數(shù)據(jù)庫中總共有三個文檔,其中兩個具有isdriver: true.有人能幫我解決這個問題嗎?為什么我會收到這樣的回復(fù)?
查看完整描述

1 回答

?
慕妹3242003

TA貢獻1824條經(jīng)驗 獲得超6個贊

您正在學(xué)生集合中進行查找,但您解碼為驅(qū)動程序。這需要改變。


? ? var drivers []Driver

? ? var student Student


? ? // Get the next result from the cursor

? ? for cur.Next(context.TODO()) {

? ? ? ? err := cur.Decode(&student)

? ? ? ? if err != nil {

? ? ? ? ? ? fmt.Println(err)

? ? ? ? }

? ? ? ? drivers = append(drivers, student.Driver)

? ? }

此外,您缺少以下字段的Inline結(jié)構(gòu)標記:DriverStudent


type Student struct {

? ? ID? ? ? ?primitive.ObjectID `bson:"_id,omitempty"`

? ? IsDriver bool? ? ? ? ? ? ? ?`json:"isdriver,omitempty"`

? ? // Note that Inline is uppercase.

? ? Driver? ?Driver? ? ? ? ? ? ?`json:"driver,omitempty" bson:"driver,Inline"`

}

當然,所有引用的結(jié)構(gòu)也是如此。

查看完整回答
反對 回復(fù) 2023-07-31
  • 1 回答
  • 0 關(guān)注
  • 143 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號