对于一个项目,我必须在Go中使用RESTful API查询Mongo数据库。
这是我的问题,我从Mongo获得了这种结构。
{
"_id" : "ObjectID",
"id" : 1234,
"project" : {
"id" : 1,
"name" : "A project"
},
"tracker" : {
"id" : 2,
"name" : "A tracker"
},
"status" : {
"id" : 3,
"name" : "A status"
},
"priority" : {
"id" : 4,
"name" : "A priority"
},
"author" : {
"id" : 5,
"name" : "An author"
},
"assigned_to" : {
"id" : 6,
"name" : "Assigned to"
},
"category" : {
"id" : 7,
"name" : "A category"
},
"subject" : "A subject",
"description" : "A description",
"done_ratio" : 0,
"spent_hours" : 0.0,
"total_spent_hours" : 0.0,
"custom_fields" : [
{
"id" : 1,
"name" : "",
"value" : ""
},
{
"id" : 2,
"name" : "",
"multiple" : true,
"value" : [
""
]
}
],
"created_on" : "2018-12-21T15:22:57.000Z",
"updated_on" : "2018-12-26T10:58:35.000Z",
"journals" : [
{
"id" : 1,
"user" : {
"id" : 1,
"name" : ""
},
"notes" : "",
"created_on" : "2018-12-21T15:32:51Z",
"details" : [
{
"property" : "",
"name" : "",
"new_value" : ""
}
]
},
{
"id" : 2,
"user" : {
"id" : 1,
"name" : ""
},
"notes" : "",
"created_on" : "2018-12-21T15:33:54Z",
"details" : []
}
]
}
如您所见,有两个元素称为custom_fields和journals,它们是对象列表。但是有时它只能是唯一的对象,而不是列表。
在Go API中,我创建了以下结构:
type Custom struct {
Id int `json:"id" bson:"id"`
Name string `json:"name" bson:"name"`
Multiple bool `json:"multiple" bson:"multiple"`
Value []string `json:"value" bson:"value"`
}
type Journal struct {
ID int `json:"id" bson:"id"`
User struct {
ID int `json:"id" bson:"id"`
Name string `json:"name" bson:"name"`
} `json:"user" bson:"user"`
Note string `json:"notes" bson:"notes"`
Created_on string `json:"created_on" bson:"created_on"`
Details struct {
Property string `json:"property" bson:"property"`
Name string `json:"name" bson:"name"`
Old_Value string `json:"old_value" bson:"old_value"`
New_Value string `json:"new_value" bson:"new_value"`
} `json:"details" bson:"details"`
}
type MainStruct struct {
ID int `json:"id" bson:"id"`
Project struct {
ID int `json:"id" bson:"id"`
Name string `json:"name" bson:"name"`
} `json:"project" bson:"project"`
Tracker struct {
ID int `json:"id" bson:"id"`
Name string `json:"name" bson:"name"`
} `json:"tracker" bson:"tracker"`
Status struct {
ID int `json:"id" bson:"id"`
Name string `json:"name" bson:"name"`
} `json:"status" bson:"status"`
Priority struct {
ID int `json:"id" bson:"id"`
Name string `json:"name" bson:"name"`
} `json:"priority" bson:"priority"`
Author struct {
ID int `json:"id" bson:"id"`
Name string `json:"name" bson:"name"`
} `json:"author" bson:"author"`
Assigned_to struct {
ID int `json:"id" bson:"id"`
Name string `json:"name" bson:"name"`
} `json:"assigned_to" bson:"assigned_to"`
Subject string `json:"subject" bson:"subject"`
Description string `json:"description" bson:"description"`
Due_date time.Time `json:"due_date" bson:"due_date"`
Done_ratio int `json:"done_ratio" bson:"done_ratio"`
CustomFields []Custom `json:"custom_fields" bson:"custom_fields"`
Created_on time.Time `json:"created_on" bson:"created_on"`
Updated_on time.Time `json:"updated_on" bson:"updated_on"`
Journals []Journal `json:"journals" bson:"journals"`
}
但是当我查询MongoDb并获得一个文档作为一个custom_field或一个日记时,会出现以下错误:
cannot decode string into a slice
我不知道如何将一个元素切成1。