API(几乎)与GoLang的RESTFul变量响应

问题描述 投票:0回答:2

我有一个软件,由于各种原因我无法替换,并且有一个看起来像RESTFul的API。

所有EndPoints都可以使用一个或多个(在数组中)对象进行响应,即使RESTFul体系结构表明它必须使用对象数组进行响应,如果它只找到一个对象,它将返回对象而不包含在数组中。

GET /customers?country_id=10000

{
  "count": 5,
  "customers": [
    { "id": 10000, "name": "Customer 10000", "vatnum": "123456789P", "country_id": 10000 },
    { "id": 10001, "name": "Customer 10001", "vatnum": "234567891P", "country_id": 10000 },
    { "id": 10002, "name": "Customer 10002", "vatnum": "345678912P", "country_id": 10000 },
    { "id": 10003, "name": "Customer 10003", "vatnum": "456789123P", "country_id": 10000 },
    { "id": 10004, "name": "Customer 10004", "vatnum": "567891234P", "country_id": 10000 }
  ]
}

GET /customers?vatnum=123456789P

{
  "count": 1,
  "customers": {
    "id": 10000,
    "name": "Customer 10000",
    "vatnum": "123456789P",
    "country_id": 10000
  }
}

我的问题是我正在制作这个API的客户端,我不知道哪个是在Golang结构中映射/解析服务器响应方面解决这个问题的最佳策略。

json rest api go mapping
2个回答
1
投票

我在使用新的apis https://mholt.github.io/json-to-go/时经常使用这个工具,如果你复制粘贴你的json你可以获得自动struts,即:

type AutoGenerated struct {
    Count     int `json:"count"`
    Customers struct {
        ID        int    `json:"id"`
        Name      string `json:"name"`
        Vatnum    string `json:"vatnum"`
        CountryID int    `json:"country_id"`
    } `json:"customers"`
}

这是单个结构,另一个只是一个数组。

我意识到我误读了你的问题。 https://golang.org/pkg/encoding/json/#RawMessage以前的答案是正确的原始信息是最好的。


0
投票
type ListResponse struct{
    Count int `json:"count"`
    Customers []Customer `json:"customers"`
}

type Customer struct{
ID int               `json:"id"`
VatNum string        `json:"vatnum"`
Name string          `json:"name"`
CountryId int        `country_id`
}
func main(){
    customer1 = Customer{1,"vat 1","name 1",1000}
    customer2 = Customer{2,"vat 2","name 2",1001}
    customers := make([]Customer,0,10)
    customers = append(customers,customer1,customer2)
    response = ListResponse{len(customers),customers}
    buf,_ = json.Marshal(response)
    fmt.Println(string(buf))
}
© www.soinside.com 2019 - 2024. All rights reserved.