好的,我有這個(gè):handler.Mount(subRouter, routes.PersonInjection{PeopleById: models.PersonInit()})PersonInit 看起來(lái)像:func PersonInit() (Map,Map) { peopleById["1"] = Model{ID: 1, Handle: "alex", Firstname: "Alex", Lastname: "Chaz", Email: "alex@example.com", Password:"foo"} peopleById["2"] = Model{ID: 2, Handle: "jason",Firstname: "Jason", Lastname: "Statham", Email: "jason@example.com", Password:"foo"} peopleByHandle["alex"] = peopleById["1"] peopleByHandle["jason"] = peopleById["2"] return peopleById, peopleByHandle}地圖類型只是Map[string]someStruct{}看起來(lái)PersonInjection{}像:type PersonInjection struct { PeopleById, PeopleByHandle person.Map}所以我想做類似的事情:handler.Mount(subRouter, routes.PersonInjection{PeopleById,PersonByHandle: models.PersonInit()...})嗯,有人知道怎么做嗎?現(xiàn)在我只有: by_id, by_handle := models.PersonInit() handler.Mount(subRouter, routes.PersonInjection{PeopleById: by_id, PeopleByHandle:by_handle})
1 回答

開滿天機(jī)
TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超13個(gè)贊
Go 中沒(méi)有結(jié)構(gòu)可以幫助制作這個(gè)單行代碼。我認(rèn)為,除了變量名中的下劃線,你現(xiàn)在擁有的是好的。
就個(gè)人而言,為了可讀性,我會(huì)添加更多行:
var?personInj?routes.PersonInjection personInj.PeopleById,?personInj.PeopleByHandle?=?models.PersonInit() handler.Mount(subRouter,?personInj)
- 1 回答
- 0 關(guān)注
- 170 瀏覽
添加回答
舉報(bào)
0/150
提交
取消