a上有few questions topic,但它们似乎都没有涵盖我的情况,因此我正在创建一个新的。
我有以下JSON:
{"foo":{ "bar": "1", "baz": "2" }, "more": "text"}
有没有办法解组嵌套的bar属性并将其直接分配给struct属性而不创建嵌套的struct?
我现在采用的解决方案如下:
type Foo struct {
More String `json:"more"`
Foo struct {
Bar string `json:"bar"`
Baz string `json:"baz"`
} `json:"foo"`
// FooBar string `json:"foo.bar"`
}
这是一个简化版本,请忽略详细程度。如您所见,我希望能够解析并将值赋给
// FooBar string `json:"foo.bar"`
我见过人们使用地图,但那不是我的情况。我基本上不关心foo
(这是一个大对象)的内容,除了一些特定的元素。
在这种情况下,正确的方法是什么?我不是在寻找奇怪的黑客,所以如果这是可行的方法,那我很好。
答案 0 :(得分:54)
有没有办法解组嵌套的bar属性并将其直接分配给struct属性而不创建嵌套的struct?
不,编码/ json无法使用“> some> deep> childnode”这样的技巧,就像编码/ xml一样。 嵌套结构是可行的方法。
答案 1 :(得分:26)
与Volker提到的一样,嵌套结构是最佳选择。但是如果你真的不想要嵌套结构,你可以覆盖UnmarshalJSON函数。
https://play.golang.org/p/dqn5UdqFfJt
type A struct {
FooBar string // takes foo.bar
FooBaz string // takes foo.baz
More string
}
func (a *A) UnmarshalJSON(b []byte) error {
var f interface{}
json.Unmarshal(b, &f)
m := f.(map[string]interface{})
foomap := m["foo"]
v := foomap.(map[string]interface{})
a.FooBar = v["bar"].(string)
a.FooBaz = v["baz"].(string)
a.More = m["more"].(string)
return nil
}
请忽略我没有返回正确错误的事实。为简单起见,我把它留了下来。
更新:正确检索“更多”值。
答案 2 :(得分:14)
这是如何从Safebrowsing v4 API sbserver代理服务器解组JSON响应的示例:https://play.golang.org/p/4rGB5da0Lt
// this example shows how to unmarshall JSON requests from the Safebrowsing v4 sbserver
package main
import (
"fmt"
"log"
"encoding/json"
)
// response from sbserver POST request
type Results struct {
Matches []Match
}
// nested within sbserver response
type Match struct {
ThreatType string
PlatformType string
ThreatEntryType string
Threat struct {
URL string
}
}
func main() {
fmt.Println("Hello, playground")
// sample POST request
// curl -X POST -H 'Content-Type: application/json'
// -d '{"threatInfo": {"threatEntries": [{"url": "http://testsafebrowsing.appspot.com/apiv4/ANY_PLATFORM/MALWARE/URL/"}]}}'
// http://127.0.0.1:8080/v4/threatMatches:find
// sample JSON response
jsonResponse := `{"matches":[{"threatType":"MALWARE","platformType":"ANY_PLATFORM","threatEntryType":"URL","threat":{"url":"http://testsafebrowsing.appspot.com/apiv4/ANY_PLATFORM/MALWARE/URL/"}}]}`
res := &Results{}
err := json.Unmarshal([]byte(jsonResponse), res)
if(err!=nil) {
log.Fatal(err)
}
fmt.Printf("%v\n",res)
fmt.Printf("\tThreat Type: %s\n",res.Matches[0].ThreatType)
fmt.Printf("\tPlatform Type: %s\n",res.Matches[0].PlatformType)
fmt.Printf("\tThreat Entry Type: %s\n",res.Matches[0].ThreatEntryType)
fmt.Printf("\tURL: %s\n",res.Matches[0].Threat.URL)
}
答案 3 :(得分:9)
答案 4 :(得分:5)
匿名字段怎么样?我不确定这是否会构成一个嵌套结构"但它比嵌套的结构声明更清晰。如果要在其他地方重用嵌套元素该怎么办?
type NestedElement struct{
someNumber int `json:"number"`
someString string `json:"string"`
}
type BaseElement struct {
NestedElement `json:"bar"`
}
答案 5 :(得分:0)
是的,您可以将嵌套json的值分配给struct,直到您知道json键的基础类型为止。
package main
import (
"encoding/json"
"fmt"
)
// Object
type Object struct {
Foo map[string]map[string]string `json:"foo"`
More string `json:"more"`
}
func main(){
someJSONString := []byte(`{"foo":{ "bar": "1", "baz": "2" }, "more": "text"}`)
var obj Object
err := json.Unmarshal(someJSONString, &obj)
if err != nil{
fmt.Println(err)
}
fmt.Println("jsonObj", obj)
}
答案 6 :(得分:0)
我正在做这样的事情。但是只使用proto生成的结构。 this
你原型中的
message Msg {
Firstname string = 1 [(gogoproto.jsontag) = "name.firstname"];
PseudoFirstname string = 2 [(gogoproto.jsontag) = "lastname"];
EmbedMsg = 3 [(gogoproto.nullable) = false, (gogoproto.embed) = true];
Lastname string = 4 [(gogoproto.jsontag) = "name.lastname"];
Inside string = 5 [(gogoproto.jsontag) = "name.inside.a.b.c"];
}
message EmbedMsg{
Opt1 string = 1 [(gogoproto.jsontag) = "opt1"];
}
然后你的输出将是
{
"lastname": "Three",
"name": {
"firstname": "One",
"inside": {
"a": {
"b": {
"c": "goo"
}
}
},
"lastname": "Two"
},
"opt1": "var"
}
答案 7 :(得分:-1)
组合map和struct允许解密嵌套的JSON对象,其中键是动态的。 =>地图[字符串]
例如:stock.json
{
"MU": {
"symbol": "MU",
"title": "micro semiconductor",
"share": 400,
"purchase_price": 60.5,
"target_price": 70
},
"LSCC":{
"symbol": "LSCC",
"title": "lattice semiconductor",
"share": 200,
"purchase_price": 20,
"target_price": 30
}
}
去申请
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"os"
)
type Stock struct {
Symbol string `json:"symbol"`
Title string `json:"title"`
Share int `json:"share"`
PurchasePrice float64 `json:"purchase_price"`
TargetPrice float64 `json:"target_price"`
}
type Account map[string]Stock
func main() {
raw, err := ioutil.ReadFile("stock.json")
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
var account Account
log.Println(account)
}
哈希中的动态键是处理字符串,嵌套对象由结构表示。