gpt4 book ai didi

golang 中的 json 编码数组列表

转载 作者:数据小太阳 更新时间:2023-10-29 03:39:39 26 4
gpt4 key购买 nike

你好我回来再问抱歉,如果你们认为我缺乏搜索,但我已经这样做了几个小时,但我仍然不明白为什么

我在 Golang 中有一个这样的 Controller :

c3 := router.CreateNewControllerInstance("index", "/v4")
c3.Post("/insertEmployee", insertEmployee)

然后用Postman抛出这个arraylist请求,请求是这样的

[{
"IDEmployee": "EMP4570787",
"IDBranch": "ALMST",
"IDJob": "PRG",
"name": "Mikey Ivanyushin",
"street": "1 Bashford Point",
"phone": "9745288064",
"join_date": "2008-09-18",
"status": "fulltime"
},{
"IDEmployee": "EMP4570787",
"IDBranch": "ALMST",
"IDJob": "PRG",
"name": "Mikey Ivanyushin",
"street": "1 Bashford Point",
"phone": "9745288064",
"join_date": "2008-09-18",
"status": "fulltime"
}]

而且我还有 2 个像这样的结构

type EmployeeRequest struct {
IDEmployee string `json: "id_employee"`
IDBranch string `json: "id_branch" `
IDJob string `json: "id_job" `
Name string `json: "name" `
Street string `json: "street" `
Phone string `json: "phone" `
JoinDate string `json: "join_date" `
Status string `json: "status" `
Enabled int `json: "enabled" `
Deleted int `json: "deletedstring"`
}

type ListEmployeeRequest struct {
ListEmployee []EmployeeRequest `json: "request"`
}

由于某种原因,问题从这里开始,当我尝试运行我的函数来读取我从 Postman 发送的 json 时

这是我尝试运行的函数

func insertEmployee(ctx context.Context) {
tempReq := services.ListEmployeeRequest{}

temp1 := ctx.ReadJSON(&tempReq.ListEmployee)

var err error
if err = ctx.ReadJSON(temp1); config.FancyHandleError(err) {
fmt.Println("err readjson ", err.Error())
}
parsing, errParsing := json.Marshal(temp1)
fmt.Println("", string(parsing))
fmt.Print("", errParsing)
}

问题出现在 if err = ctx.ReadJSON(temp1); 行上配置.FancyHandleError(err)它告诉我 JSON 输入意外结束,当我从 Postman 发出请求时我做错了什么吗?还是我输入了错误的验证码?

谁能告诉我下一步该怎么做才能读取我从 postman 抛出的 JSON?

感谢您的关注和帮助,非常喜欢<3

最佳答案

这里有多个问题:

  1. 标签名称与 JSON 输入不匹配,例如id_employeeIDEmployee
  2. 你的标签语法不正确,当你运行 go vet 时显示,它应该是 json:"id_employee"
  3. 您不需要另一个 List 结构,如果您使用它,您的 json 应该是 {"requests":[...]}。相反,您可以反序列化 slice :

    var requests []EmployeeRequest
    if err := json.Unmarshal([]byte(j), &requests); err != nil {
    log.Fatal(err)
    }

你可以在这里看到一个正在运行的版本:https://play.golang.org/p/HuycpNxE6k8

关于golang 中的 json 编码数组列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53062672/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com