2 回答
TA贡献1828条经验 获得超3个赞
GetRsvp返回循环变量的地址,而不是数组中元素的地址。修理:
for i, element := range e.Rsvps {
if element.UserId == userId {
return &e.Rsvps[i], nil
}
}
循环变量保留 e.Rsvps[i] 的副本,并且它在每次迭代时都会被覆盖。如果返回循环变量的地址,则返回该副本的地址。
TA贡献1780条经验 获得超3个赞
当范围覆盖切片时,每次迭代都会返回两个值。第一个是索引,第二个是该索引处元素的副本。
因此从技术上讲,您正在尝试修改 Rsvp 的副本。相反,从 GetRsvp() 方法返回索引并更新。
func (e *Event) GetRsvp(userId string) (int, error) {
for index , element := range e.Rsvps {
if element.UserId == userId {
return index, nil
}
}
return -1 , fmt.Errorf("could not find RSVP based on UserID")
}
func (e *Event) UpdateExistingRsvp(userId string, rsvpString string) {
index, err := e.GetRsvp(userId)
if err != nil || index == -1 {
fmt.Println("no such user")
}
e.Rsvps[index].RsvpString = rsvpString
}
- 2 回答
- 0 关注
- 98 浏览
添加回答
举报