从地图获取数据
res = map[Event_dtmReleaseDate:2009-09-15 00:00:00 +0000 +00:00 Trans_strGuestList:<nil> strID:TSTB]
如何从上面的结果中得到以下值
Event_dtmReleaseDate
strID
Trans_strGuestList
我试过的:
res.Map("Event_dtmReleaseDate");
错误:res.Map 未定义(类型 map[string]interface {} 没有字段或方法 Map)
res.Event_dtmReleaseDate;
错误:v.id 未定义(类型 map[string]interface {} 没有字段或方法 id)
Helenr
相关分类