我想解析一些JSON,但是一个键是字符串或对象。
这是我当前的结构:https://github.com/PhillippOhlandt/pmtoapib/blob/master/CollectionItemRequest.go#L10
type CollectionItemRequest struct {
Url string `json:"url"`
Method string `json:"method"`
Header []RequestHeader `json:"header"`
Body RequestBody `json:"body"`
Description string `json:"description"`
}
此处“Url”属性不仅可以是字符串,还可以是对象。
我开始为它创建一个涵盖对象案例的自己的结构。
type CollectionItemRequestUrl struct {
Raw string `json:"raw"`
}
type CollectionItemRequest struct {
Url CollectionItemRequestUrl `json:"url"`
Method string `json:"method"`
Header []RequestHeader `json:"header"`
Body RequestBody `json:"body"`
Description string `json:"description"`
}
但是字符串版本将不再起作用。有没有办法让两个案例都可以通过getter获取值,比如request.Url.Get
?
编辑:
以下是JSON的两个版本:
"request": {
"url": {
"raw": "http://localhost:8081/users?per_page=5&page=2",
"protocol": "http",
"host": [
"localhost"
],
"port": "8081",
"path": [
"users"
],
"query": [
{
"key": "per_page",
"value": "5",
"equals": true,
"description": ""
},
{
"key": "page",
"value": "2",
"equals": true,
"description": ""
}
],
"variable": []
},
和
"request": {
"url": "http://localhost:8081/users/2",
注意:只有子集,整个JSON太长了。
答案 0 :(得分:4)
有一个具有自定义unmarshal方法的类型,该方法首先将解组为空接口,然后对类型是否为string
或map[string]interface{}
进行类型切换,如下所示:
type example struct {
URL myURL `json:"url"`
}
type myURL struct {
url string
}
func (u *myURL) MarshalJSON() ([]byte, error) {
return json.Marshal(u.url)
}
func (u *myURL) UnmarshalJSON(data []byte) error {
var raw interface{}
json.Unmarshal(data, &raw)
switch raw := raw.(type) {
case string:
*u = myURL{raw}
case map[string]interface{}:
*u = myURL{raw["raw"].(string)}
}
return nil
}
const myStringURL string = `{"url": "http://www.example.com/as-string"}`
const myNestedURL string = `{"url": {"raw": "http://www.example.com/as-nested"}}`
func main() {
var stringOutput example
json.Unmarshal([]byte(myStringURL), &stringOutput)
fmt.Println(stringOutput)
var nestedOutput example
json.Unmarshal([]byte(myNestedURL), &nestedOutput)
fmt.Println(nestedOutput)
}
在这里的游乐场跑步: