pobieranie jednego dokuemntu

This commit is contained in:
pawlaczyk 2019-01-07 00:44:47 +01:00
parent 39901856be
commit ea2b68b3ee
3 changed files with 15 additions and 7 deletions

Binary file not shown.

View File

@ -76,6 +76,12 @@ func addNewCard(_isQuestion bool, _blank int, _text string) {
// fmt.Printf(result) // fmt.Printf(result)
fmt.Println(reflect.TypeOf(result)) fmt.Println(reflect.TypeOf(result))
// get id and current revision.
if err := db.Get(doc, result.ID); err != nil {
panic(err)
}
fmt.Printf(result.ID)
} }
func main() { func main() {

View File

@ -1,5 +1,7 @@
package main package main
import "github.com/zemirco/couchdb"
//struktura użytkownika //struktura użytkownika
/* /*
CREATE TABLE users ( CREATE TABLE users (
@ -23,10 +25,10 @@ type User struct {
// Structura karty // Structura karty
/* /*
*/ */
// type Card struct { type Card struct {
// couchdb.Document couchdb.Document
// id int `json:"id" binding:"required"` id int `json:"id" binding:"required"`
// isQuestion bool `json:"typ"` //0 karta pytanie, 1 karta odpowiedź isQuestion bool `json:"typ"` //0 karta pytanie, 1 karta odpowiedź
// blank int `json:"puste" binding:"required"` //ile kart odpowiedzi na pytanie blank int `json:"puste" binding:"required"` //ile kart odpowiedzi na pytanie
// text string `json:"tekst" binding:"required"` // podłoga to luka text string `json:"tekst" binding:"required"` // podłoga to luka
// } }