如果数据库为空,则返回空数组

时间:2015-05-30 18:01:30

标签: go

我的应用程序的前端需要在命名空间下从服务器返回json(如下面的messages

{
   messages: [{
       "id": "6b2360d0" //other properties omitted

   },{
       "id": "a01dfaa0" //other properties omitted

   }]
}

如果没有消息,我需要返回一个带有命名空间

的空数组
{

    messages: []
}

但是,如果没有从db

中提取消息,则下面的代码当前返回null
{

        messages: null
    }

如何更改以下代码

  {

        messages: []
    }
如果db中没有消息,则返回

type Inbox struct {
    Messages []*Message `json:"messages"`
}
type Message struct {
    Content string `json:"type"`
    Date string `json:"date"`
    Id   string `json:"id"`
}

func fetchMessages(w http.ResponseWriter, req *http.Request) {

    var ib Inbox

    var index int = 0

    err := db.View(func(tx *bolt.Tx) error {

        c := tx.Bucket([]byte("messages")).Cursor()

        for k, v := c.Last(); k != nil && index < 10; k, v = c.Prev() {

         //note the next few lines might appear odd, currently each  json object to be added to the array of messages is also namespaced under 'message', so I first unmarshal it to a map and then unmarshal again into a the struct
            var objmap map[string]*json.RawMessage
            if err := json.Unmarshal(v, &objmap); err != nil {
                return err
            }

            message := &Message{}
            if err := json.Unmarshal(*objmap["message"], &message); err != nil {
                return err
            }

            ib.Messages = append(ib.Messages, message)

        }

        return nil
    })

    response, _ := json.Marshal(a)
    w.Header().Set("Content-Type", "application/json")
    w.WriteHeader(http.StatusOK)
    w.Write(response)

}

2 个答案:

答案 0 :(得分:5)

替换:

    var ib Inbox

使用:

    var ib Inbox
    ib.Messages = make([]*Message, 0)

或与:

    ib := Inbox{Messages: make([]*Message, 0)}

(可选择使用make(…, 0, someInitialCapacity)。)

答案 1 :(得分:-2)

处理此问题的另一种方法是创建自定义封送处理程序或动态检查字段。

来源:Arrays and JSON in Go

此外,为了避免不必要的编组和拆组,我将使用mapstructure package将映射从结构转换为结构。