![QQ图片20181127220801.png](https://static.studygolang.com/181127/75f9f77bc060c3752948686862c770d4.png)
这个类型怎么转成map,
t.([]map[string]interface{})
t.(map[string]interface{})都不行
更多评论
问题能描述清楚点么
或者参考语法规范
···
A non-constant value x can be converted to type T in any of these cases:
x is assignable to T.
ignoring struct tags (see below), x's type and T have identical underlying types.
ignoring struct tags (see below), x's type and T are pointer types that are not defined types, and their pointer base types have identical underlying types.
x's type and T are both integer or floating point types.
x's type and T are both complex types.
x is an integer or a slice of bytes or runes and T is a string type.
x is a string and T is a slice of bytes or runes.
···
#2