用分片对结构进行解组将返回空值而不是空分片

时间:2019-10-26 08:36:01

标签: go amazon-dynamodb unmarshalling

如果我创建没有任何标签的“照片”,则将其存储为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

1 个答案:

答案 0 :(得分:2)

如果我正确理解了您的问题,要获得一个空白的标签({"photo_id":"bmpuh3jg","tags":[]}),可以这样做:

  jsonString := `{"photo_id":"bmpuh3jg","tags":null}`

  photo := &Photo{}
  err := json.Unmarshal([]byte(jsonString), &photo)
  if err != nil {
     fmt.Println(err.Error())
  }

  // Here is a trick. Replace nil with an empty slice.
  if photo.Tags == nil {
    photo.Tags = []string{}
  }
  elemJSON, err := json.Marshal(photo)
  if err != nil {
    fmt.Println(err.Error())
  }
  fmt.Println(string(elemJSON)) //{"photo_id":"bmpuh3jg","tags":[]} 

要了解,为什么没有切片会编码为空JSON,您可以查看官方文档https://golang.org/pkg/encoding/json/

  

数组和切片值编码为JSON数组,除了[] byte   编码为base64编码的字符串,而nil slice编码为   空JSON值。

在Go Playground上检查:https://play.golang.org/p/BsxTpBlypV5