例如,我们有以下界面:
type IRoute interface {
AddChildren(child IRoute)
}
Run Code Online (Sandbox Code Playgroud)
以下结构:
type Route struct {
Alias string `json:"alias"`
Children []Route `json:"children,omitempty"`
Url string `json:"url,omitempty"`
}
Run Code Online (Sandbox Code Playgroud)
并实现了界面:
func (this Route) AddChildren (child globals.IRoute){
this.Children = append(this.Children, child.(Route))
}
Run Code Online (Sandbox Code Playgroud)
然后在我们的主函数中,如果我们想测试它,它将无法工作:
rSettings := Route{"settings", nil, "/admin/settings"}
rSettingsContentTypesNew := models.Route{"new", nil, "/new?type&parent"}
rSettingsContentTypesEdit := models.Route{"edit", nil, "/edit/:nodeId"}
// Does NOT work - no children is added
rSettingsContentTypes.AddChildren(rSettingsContentTypesNew)
rSettingsContentTypes.AddChildren(rSettingsContentTypesEdit)
rSettings.AddChildren(rSettingsContentTypes)
Run Code Online (Sandbox Code Playgroud)
这确实按预期工作:
rSettings := Route{"settings", nil, "/admin/settings"}
rSettingsContentTypesNew := models.Route{"new", nil, "/new?type&parent"}
rSettingsContentTypesEdit := models.Route{"edit", nil, "/edit/:nodeId"}
// However this does indeed work
rSettingsContentTypes.Children = append(rSettingsContentTypes.Children,rSettingsContentTypesNew)
rSettingsContentTypes.Children = append(rSettingsContentTypes.Children,rSettingsContentTypesEdit)
rSettings.Children = append(rSettings.Children,rSettingsContentTypes)
Run Code Online (Sandbox Code Playgroud)
我错过了什么?:-)
接收者func (this Route) AddChildren (child globals.IRoute)是一个值,因此您正在更改Route结构的副本.
将其更改为 func (this *Route) AddChildren (child globals.IRoute)
| 归档时间: |
|
| 查看次数: |
79 次 |
| 最近记录: |