pobieranie jednego dokuemntu
This commit is contained in:
parent
39901856be
commit
ea2b68b3ee
Binary file not shown.
@ -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() {
|
||||||
|
@ -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
|
||||||
// }
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user