我正在尝试创建一个数据结构,其中包含一个包含地图的切片。这就是我所拥有的:data := map[string]interface{}{"Offset": "0", "Properties": []string{}, "Category": "all", "Locations": []string{}, "Accounts": "100" }我需要“properties”元素来包含一个如下所示的地图:{"key": "Type", "value": "User"}这似乎比它应该的更难,或者也许我只是愚蠢。
1 回答
陪伴而非守候
TA贡献1757条经验 获得超8个赞
这样的东西应该是你想要的(游乐场)
data := map[string]interface{}{"Offset": "0",
"Properties": map[string]string{
"key": "Type",
"value": "User",
},
"Category": "all",
"Locations": []string{},
"Accounts": "100",
}
- 1 回答
- 0 关注
- 140 浏览
添加回答
举报
0/150
提交
取消