亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

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

從返回元組的 func 初始化結構

從返回元組的 func 初始化結構

Go
繁花如伊 2023-05-22 16:07:20
好的,我有這個:handler.Mount(subRouter, routes.PersonInjection{PeopleById: models.PersonInit()})PersonInit 看起來像:func PersonInit() (Map,Map) {    peopleById["1"] = Model{ID: 1, Handle: "alex", Firstname: "Alex", Lastname: "Chaz", Email: "[email protected]", Password:"foo"}    peopleById["2"] = Model{ID: 2, Handle: "jason",Firstname: "Jason", Lastname: "Statham", Email: "[email protected]", Password:"foo"}    peopleByHandle["alex"] = peopleById["1"]    peopleByHandle["jason"] = peopleById["2"]    return peopleById, peopleByHandle}地圖類型只是Map[string]someStruct{}看起來PersonInjection{}像:type PersonInjection struct {    PeopleById, PeopleByHandle person.Map}所以我想做類似的事情:handler.Mount(subRouter, routes.PersonInjection{PeopleById,PersonByHandle: models.PersonInit()...})嗯,有人知道怎么做嗎?現在我只有:    by_id, by_handle := models.PersonInit()    handler.Mount(subRouter, routes.PersonInjection{PeopleById: by_id, PeopleByHandle:by_handle})
查看完整描述

1 回答

?
開滿天機

TA貢獻1786條經驗 獲得超13個贊

Go 中沒有結構可以幫助制作這個單行代碼。我認為,除了變量名中的下劃線,你現在擁有的是好的。

就個人而言,為了可讀性,我會添加更多行:

var?personInj?routes.PersonInjection
personInj.PeopleById,?personInj.PeopleByHandle?=?models.PersonInit()
handler.Mount(subRouter,?personInj)


查看完整回答
反對 回復 2023-05-22
  • 1 回答
  • 0 關注
  • 157 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號