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