Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Printing Empty Json as a result [duplicate]

Tags:

json

encoding

go

I am trying to retrieve some data from my postgres db and printing them to localhost/db as json. I am succeeding in printing them without json but I need them in 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

And this is the output on the terminal:

 [{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}]

Anyone knows what is the problem?

like image 543
Said Saifi Avatar asked Jan 05 '23 19:01

Said Saifi


1 Answers

The encoding/json package uses reflection (reflect package) to access fields of structs. You need to export the fields of your struct to make it work (start them with an uppercase letter):

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

And when scanning:

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

Quoting from json.Marshal():

Struct values encode as JSON objects. Each exported struct field becomes a member of the object...

like image 115
icza Avatar answered Jan 08 '23 10:01

icza