Golang 实现interface类型转string类型
作者:一条小码农 时间:2024-02-11 14:44:12
看代码吧~
// Strval 获取变量的字符串值
// 浮点型 3.0将会转换成字符串3, "3"
// 非数值或字符类型的变量将会被转换成JSON格式字符串
func Strval(value interface{}) string {
var key string
if value == nil {
return key
}
switch value.(type) {
case float64:
ft := value.(float64)
key = strconv.FormatFloat(ft, 'f', -1, 64)
case float32:
ft := value.(float32)
key = strconv.FormatFloat(float64(ft), 'f', -1, 64)
case int:
it := value.(int)
key = strconv.Itoa(it)
case uint:
it := value.(uint)
key = strconv.Itoa(int(it))
case int8:
it := value.(int8)
key = strconv.Itoa(int(it))
case uint8:
it := value.(uint8)
key = strconv.Itoa(int(it))
case int16:
it := value.(int16)
key = strconv.Itoa(int(it))
case uint16:
it := value.(uint16)
key = strconv.Itoa(int(it))
case int32:
it := value.(int32)
key = strconv.Itoa(int(it))
case uint32:
it := value.(uint32)
key = strconv.Itoa(int(it))
case int64:
it := value.(int64)
key = strconv.FormatInt(it, 10)
case uint64:
it := value.(uint64)
key = strconv.FormatUint(it, 10)
case string:
key = value.(string)
case []byte:
key = string(value.([]byte))
default:
newValue, _ := json.Marshal(value)
key = string(newValue)
}
return key
}
补充:golang json 为map[string] interface{}
json字符串:
{"sn":1,"ls":false,"bg":0,"ed":0,"ws":[{"bg":0,"cw":[{"sc":0,"w":"还"}]},{"bg":0,"cw":[{"sc":0,"w":"有点"}]},{"bg":0,"cw":[{"sc":0,"w":"眼熟"}]}]}
需要将json格式中的w字段取出来,并且拼成结果串进行展示
1、从json数组中获取ws
2、ws是数组,数组元素为object
3、cw是数组,数组元素为object
4、w是string
5、从cw遍历获取w字段
解析代码:
func RecResultJsonToPlain() {
var recResult string
var dat map[string]interface{}
json.Unmarshal([]byte(json_str), &dat)
if v, ok := dat["ws"]; ok {
ws := v.([]interface{})
for i, wsItem := range ws {
wsMap := wsItem.(map[string]interface{})
if vCw, ok := wsMap["cw"]; ok {
cw := vCw.([]interface{})
for i, cwItem := range cw {
cwItemMap := cwItem.(map[string]interface{})
if w, ok := cwItemMap["w"]; ok {
recResult = recResult + w.(string)
}
}
}
}
}
fmt.Println(recResult)
}
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。
来源:https://blog.csdn.net/github_39430096/article/details/102741661
标签:Golang,interface,string
0
投稿
猜你喜欢
Python 模块EasyGui详细介绍
2022-04-27 22:55:39
MySQL执行SQL语句的流程详解
2024-01-21 12:44:00
简单谈谈Python中的元祖(Tuple)和字典(Dict)
2022-12-14 03:26:26
asp如何显示SQL数据库所有表的名称?
2010-06-08 09:30:00
python 阿里云oss实现直传签名与回调验证的示例方法
2021-12-08 00:30:18
matplotlib之多边形选区(PolygonSelector)的使用
2023-12-30 19:33:37
python-OpenCV 实现将数组转换成灰度图和彩图
2023-07-22 11:22:19
Golang 处理浮点数遇到的精度问题(使用decimal)
2024-04-25 15:01:15
python中from module import * 的一个坑
2021-10-29 08:23:51
Python实现新年愿望代码雨效果
2022-08-02 00:52:35
Python实现字典的key和values的交换
2021-08-18 03:45:49
Python异步之迭代器如何使用详解
2023-09-10 17:48:34
python 利用pywifi模块实现连接网络破解wifi密码实时监控网络
2023-06-15 11:21:03
使用Python的datetime库处理时间(RPA流程)
2023-04-23 22:53:15
mysql遇到load data导入文件数据出现1290错误的解决方案
2024-01-29 09:53:12
记录密码的asp代码
2009-11-02 10:50:00
使用 iframe 获取网页片段的一个好处
2008-12-01 12:37:00
如何实现文本的卷屏浏览?
2010-05-24 18:36:00
使用pyecharts生成Echarts网页的实例
2023-02-22 10:19:42
Java语言实现对MySql数据库中数据的增删改查操作的代码
2024-01-21 21:19:43