2015-10-08 25 views
0

我正在嘗試使用Mongodb在Go中編寫簡單的Web應用程序。 我創建了一個簡約的簡單模型/控制器設置。 我可以使用帶有「{」pseudo「:」bobby1「}」數據的URL「/ user」來創建新用戶。用戶被創建。然而,MongoDB的外殼裏面看時,我得到:MongoDB中的重複ID

{ "_id" : ObjectId("5616d1ea56ca4dbc03bb83bc"), "id" : ObjectId("5616d1ea5213c64824000001"), "pseudo" : "bobby2"} 

的「ID」字段是一個從我的結構和「_id」字段來從MongoDB中的一個。從查看不同的示例代碼,它看起來像我可以使用自己從Mongodb,但我找不到如何做到這一點..> < 由於「ID」只用於我,我無法找到用戶通過他們的ID,因爲我沒有一個...... 更多了,當我做一個GET /用戶,它會返回用戶的完整列表,我只得到:

{"id":"5616d1ea5213c64824000001","pseudo":"bobby2" 

不是「真正的」 MongoDB的標識...

感謝,

下面的代碼:

模型/ user.go

const userCollection = "user" 

// Get our collection 
var C *mgo.Collection = database.GetCollection(userCollection) 

// User represents the fields of a user in db 
type User struct { 
    Id  bson.ObjectId `json:"id"i bson:"_id,omitempty"` 
    Pseudo string  `json:"pseudo" bson:"pseudo"` 
} 

// it will return every users in the db 
func UserFindAll() []User { 
    var users []User 
    err := C.Find(bson.M{}).All(&users) 
    if err != nil { 
     panic(err) 
    } 
    return users 
} 

// UserFIndId return the user in the db with 
// corresponding ID 
func UserFindId(id string) User { 
    if !bson.IsObjectIdHex(id) { 
     s := fmt.Sprintf("Id given %s is not valid.", id) 
     panic(errors.New(s)) 
    } 
    oid := bson.ObjectIdHex(id) 
    u := User{} 
    if err := C.FindId(oid).One(&u); err != nil { 
     panic(err) 
    } 
    return u 
} 

// UserCreate create a new user on the db 
func UserCreate(u *User) { 
    u.Id = bson.NewObjectId() 
    err := C.Insert(u) 
    if err != nil { 
     panic(err) 
    } 
} 

控制器/ user.go

/ GetAll returns all users 
func (us *UserController) GetAll(w http.ResponseWriter, request *http.Request) { 
    // u := model.User{ 
    //  ID:  "987654321", 
    //  Pseudo: "nikko", 
    // } 
    users := model.UserFindAll() 
    bu, err := json.Marshal(users) 
    if err != nil { 
     fmt.Printf("[-] Error while marshaling user struct : %v\n", err) 
     w.Write([]byte("Error Marshaling")) 
     w.WriteHeader(404) 
     return 
    } 

    w.Header().Set("Content-type", "application/json") 
    w.WriteHeader(200) 
    fmt.Fprintf(w, "%s\n", bu) 
} 

// Get return a specific user according to Id 
func (us *UserController) Get(w http.ResponseWriter, request *http.Request) { 
    vars := mux.Vars(request) 
    ps := vars["id"] 
    u := model.UserFindId(ps) 
    bu, err := json.Marshal(u) 
    if err != nil { 
     fmt.Printf("[-] Error while marshaling user struct : %v\n", err) 
     w.Write([]byte("Error Marshaling")) 
     w.WriteHeader(404) 
     return 
    } 

    w.Header().Set("Content-type", "application/json") 
    w.WriteHeader(200) 
    fmt.Fprintf(w, "%s\n", bu) 
} 

func (us *UserController) Post(w http.ResponseWriter, r *http.Request) { 
    u := model.User{} 
    json.NewDecoder(r.Body).Decode(&u) 
    model.UserCreate(&u) 
    bu, err := json.Marshal(u) 

    if err != nil { 
     fmt.Printf("[-] Error PUT user struct : %v\n", err) 
     w.WriteHeader(404) 
     return 
    } 

    w.Header().Set("Content-type", "application/json") 
    w.WriteHeader(201) 
    fmt.Fprintf(w, "%s\n", bu) 
} 

回答

0

看起來你有一個流浪字符在你的結構標籤:

type User struct { 
    Id  bson.ObjectId `json:"id"i bson:"_id,omitempty"` 
    Pseudo string  `json:"pseudo" bson:"pseudo"` 
} 

那在json:"id"之後不應該存在i。它應該是:

type User struct { 
    Id  bson.ObjectId `json:"id" bson:"_id,omitempty"` 
    Pseudo string  `json:"pseudo" bson:"pseudo"` 
} 
+0

我的天啊。我會一直打我的頭,並重新編碼這個事情一千次的懲罰......謝謝;) – Nikkolasg