我正在使用以下结构type Str struct { Info string Command string}并在其中填充数据,我在做下面的工作。 return []Str{ {"info from source", "install && run"}, }现在我需要将命令更改为arraytype Str struct { Info string Command []string}并在数组的新条目中提供每个命令(“安装”和“运行”),我该怎么做当我尝试return []Str{ {"info from source",string[]{ {"install}, {"run"}},}我收到缺少类型文字的erorr,知道我做错了什么
1 回答
- 1 回答
- 0 关注
- 447 浏览
添加回答
举报
0/150
提交
取消