如果我创建一个没有任何标签的“照片”,它将存储在 dynamodb 中
"tags": {
"NULL": true
},
但是当我查询和解组记录时,我希望它将其转换为空切片,而不是我得到:
[{"photo_id":"bmpuh3jg","tags":null}]
是否可以将其转换为空切片?例如
[{"photo_id":"bmpuh3jg","tags":[]}]
代码示例
我的结构
type Photo struct {
Id string `json:"photo_id"`
Tags []string `json:"tags"`
}
询问
photo := &Photo{}
input := &dynamodb.QueryInput{
TableName: aws.String("local.photos"),
KeyConditionExpression: aws.String("photo_id = :photo_id"),
ExpressionAttributeValues: map[string]*dynamodb.AttributeValue{
":photo_id": {
S: aws.String(photo_id),
},
},
}
db_result, err := db.Query(input)
if err != nil {
return nil, err
} else if *db_result.Count == int64(0) {
// No item found
return nil, err
}
err = dynamodbattribute.UnmarshalListOfMaps(db_result.Items, photo)
if err != nil {
return nil, err
}
photoJSON, err := json.Marshal(photo)
if err != nil {
return nil, err
}
return photoJSON, nil
呼啦一阵风
相关分类