结果打印空Json

时间:2016-06-29 07:26:44

标签: json go encoding

我正在尝试从我的postgres数据库中检索一些数据并将其作为json打印到localhost/db。我在没有json的情况下成功打印它们但是我需要它们在json中。

main.go:

package main

import (
    "database/sql"
    "encoding/json"
    "fmt"
    "log"
    "net/http"

    _ "github.com/lib/pq"
)

type Book struct {
    isbn   string
    title  string
    author string
    price  float32
}

var b []Book

func main() {

    db, err := sql.Open("postgres", "postgres://****:****@localhost/postgres?sslmode=disable")

    if err != nil {
        log.Fatal(err)
    }
    rows, err := db.Query("SELECT * FROM books")
    if err != nil {
        log.Fatal(err)
    }
    defer rows.Close()

    var bks []Book
    for rows.Next() {
        bk := new(Book)
        err := rows.Scan(&bk.isbn, &bk.title, &bk.author, &bk.price)
        if err != nil {
            log.Fatal(err)
        }
        bks = append(bks, *bk)
    }
    if err = rows.Err(); err != nil {
        log.Fatal(err)
    }

    b = bks

    http.HandleFunc("/db", getBooksFromDB)
    http.ListenAndServe("localhost:1337", nil)

}

func getBooksFromDB(w http.ResponseWriter, r *http.Request) {

    fmt.Println(b)
    response, err := json.Marshal(b)
    if err != nil {
        panic(err)

    }

    fmt.Fprintf(w, string(response))
}

This is what I get when I access localhost:1337/db

这是终端上的输出:

 [{978-1503261969 Emma Jayne Austen 9.44} {978-1505255607 The Time Machine H. G. Wells 5.99} {978-1503379640 The Prince Niccolò Machiavelli 6.99}]

任何人都知道这是什么问题?

1 个答案:

答案 0 :(得分:7)

encoding/json包使用反射(reflect包)来访问结构的字段。您需要导出结构的字段以使其工作(以大写字母开头):

type Book struct {
    Isbn   string
    Title  string
    Author string
    Price  float32
}

扫描时:

err := rows.Scan(&bk.Isbn, &bk.Title, &bk.Author, &bk.Price)

引自json.Marshal()

  

Struct值编码为JSON对象。每个导出的struct字段都会成为对象的成员...