欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

golang中json小谈之字符串转浮点数的操作

程序员文章站 2023-09-19 22:50:09
有时会有这种需求,将一个json数据形如:{"x":"golang", "y":"520.1314"}中的y反序列化为浮点类型,如果这样写:package mainimport ( "encodin...

有时会有这种需求,将一个json数据形如:

{"x":"golang", "y":"520.1314"}

中的y反序列化为浮点类型,如果这样写:

package main
import (
  "encoding/json"
  "fmt"
)
type jsontest struct {
  x string `json:"x"`
  y float64 `json:"y"`
}
func main() {
  s := `{"x":"golang", "y":"520.1314"}`
  var jt jsontest
  err := json.unmarshal([]byte(s), &jt)
  if err == nil {
    fmt.printf("%+v\n", jt)
  } else {
    fmt.println(err)
    fmt.printf("%+v\n", jt)
  }
}

会报错:

json: cannot unmarshal string into go struct field jsontest.y of type float64

将结构体jsontest定义改为如下,即可解决战斗:

type jsontest struct {
  x string `json:"x"`
  y float64 `json:"y,string"`
}

这样写可以告诉golang的json解释器变量y是被编码成字符串的浮点数

补充:golang中struct、json、map互相转化

一、json和struct互换

(1)json转struct例子:

package main 
import (
    "fmt"
    "encoding/json"
)
 
type people struct {
    name string `json:"name_title"`
    age int `json:"age_size"`
}
 
func jsontostructdemo(){
    jsonstr := `
    {
        "name_title": "jqw"
        "age_size":12
    }
    `
    var people people
    json.unmarshal([]byte(jsonstr), &people)
    fmt.println(people)
}
 
func main(){
    jsontostructdemo()
}

输出:

golang中json小谈之字符串转浮点数的操作

注意json里面的key和struct里面的key要一致,struct中的key的首字母必须大写,而json中大小写都可以。

(2)struct转json

在结构体中引入tag标签,这样匹配的时候json串对应的字段名需要与tag标签中定义的字段名匹配,当然tag中定义的名称不需要首字母大写,且对应的json串中字段名仍然大小写不敏感。此时,结构体中对应的字段名可以不用和匹配的一致,但是首字母必须大写,只有大写才是可对外提供访问的。

例子:

package main 
import (
    "fmt"
    "encoding/json"
)
 
type people struct {
    name string `json:"name_title"`
    age int `json:"age_size"`
}
 
func structtojsondemo(){
    p := people{
        name: "jqw",
        age: 18,
    }
 
    jsonbytes, err := json.marshal(p)
    if err != nil {
        fmt.println(err)
    }
    fmt.println(string(jsonbytes))
}
 
func main(){
    structtojsondemo()
}

输出:

golang中json小谈之字符串转浮点数的操作

二、json和map互转

(1)json转map例子:

func jsontomapdemo(){
    jsonstr := `
    {
        "name": "jqw",
        "age": 18
    }
    `
    var mapresult map[string]interface{}
    err := json.unmarshal([]byte(jsonstr), &mapresult)
    if err != nil {
        fmt.println("jsontomapdemo err: ", err)
    }
    fmt.println(mapresult)
}

输出:

golang中json小谈之字符串转浮点数的操作

(2)map转json例子

func maptojsondemo1(){
    mapinstances := []map[string]interface{}{}
    instance_1 := map[string]interface{}{"name": "john", "age": 10}
    instance_2 := map[string]interface{}{"name": "alex", "age": 12}
    mapinstances = append(mapinstances, instance_1, instance_2)
 
    jsonstr, err := json.marshal(mapinstances)
 
    if err != nil {
        fmt.println("maptojsondemo err: ", err)
    }
    fmt.println(string(jsonstr))
}

输出:

golang中json小谈之字符串转浮点数的操作

例2:

func maptojsondemo2(){
    b, _ := json.marshal(map[string]int{"test":1, "try":2})
    fmt.println(string(b))
}

输出:

golang中json小谈之字符串转浮点数的操作

三、map和struct互转

(1)map转struct

需要安装一个第三方库

在命令行中运行: go get github.com/goinggo/mapstructure

例子:

func maptostructdemo(){
    mapinstance := make(map[string]interface{})
    mapinstance["name"] = "jqw"
    mapinstance["age"] = 18
 
    var people people
    err := mapstructure.decode(mapinstance, &people)
    if err != nil {
        fmt.println(err)
    }
    fmt.println(people)
}

输出

golang中json小谈之字符串转浮点数的操作

(2)struct转map例子

func structtomapdemo(obj interface{}) map[string]interface{}{
    obj1 := reflect.typeof(obj)
    obj2 := reflect.valueof(obj)
 
    var data = make(map[string]interface{})
    for i := 0; i < obj1.numfield(); i++ {
        data[obj1.field(i).name] = obj2.field(i).interface()
    }
    return data
}
func teststructtomap(){
    student := student{10, "jqw", 18}
    data := structtomapdemo(student)
    fmt.println(data)
}

输出:

golang中json小谈之字符串转浮点数的操作

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。