type MenuItem struct {
Id int32
Type string
SortOrder int8
CategoryId int32
Children []*MenuItem
}
如果你有这个结构,并且你有一片[]MenuItem. 我只想检索一个带有CategoryId值的切片。这看起来像一个递归用例,Children但基于切片的附加函数的工作方式,它看起来有点棘手。有任何想法吗?你会怎么做?
最终结果应该是一片[]int32:[11, 1900, 12, 1300,...., 2090]
杨__羊羊
相关分类