慕哥9229398
构建地图后,您可以通过提供键来访问地图的值。语法是:value := myMap[myKey]键的类型可以是任何类型,可以通过比较操作(进行评估>=,==,<=,等...)。对于您的示例,您似乎正在使用字符串作为键。下面是一个例子:m := map[string]interface{}{ "from": 0, "key": nil, "price": "Desc", "title": "task",}// Get the value of priceprice := m["price"]fmt.Println(price)// Get the titletitle := m["title"]fmt.Println(title)// Loop through all of the map's key-value pairsfor key, value := range m { fmt.Println(key, ":", value)}