常用的转换是
interface.(string)
但是interface数据不是string时将转换失败,比如 uint64 类型
这时使用如下方式转换
tmpVal := fmt.Sprintf("%v", interface)