gpt4 book ai didi

json - 结构标签选项不为字段提供标签名称

转载 作者:行者123 更新时间:2023-12-01 22:45:22 25 4
gpt4 key购买 nike

关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

1年前关闭。




Improve this question




在下面的代码中:

package main

import (
"encoding/json"
"fmt"
)

type Profile struct {
Username string `json: "uname"`
Followers int `json:"followers,omitempty,string"`
}

type Student struct {
FirstName string `json:"fname"`
LastName string `json:"lname,omitempty"`
Email string `json:"-"`
Age int `json:"-,"`
IsMale bool `json:",string"`
Profile Profile `json:""`
}

func main() {
john := &Student{
FirstName: "John",
LastName: "",
Age: 21,
Email: "john@doe.com",
Profile: Profile{
Username: "johndoe91",
Followers: 1975,
},
}

johnJSON, _ := json.MarshalIndent(john, "", " ")
fmt.Println(string(johnJSON))
}
Username没有得到标签选项 uname作为键名,根据以下输出:
{
"fname": "John",
"-": 21,
"IsMale": "false",
"Profile": {
"Username": "johndoe91",
"followers": "1975"
}
}

使用语法:
type Profile struct {
Username string `json: "uname"`
Followers int `json:"followers,omitempty,string"`
}
为什么 Username没有 uname作为编码 JSON 中的键名?

最佳答案

json: 后面不能有空格, 改成

Username  string `json:"uname"`

关于json - 结构标签选项不为字段提供标签名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63459578/

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