第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何處理重復(fù)唯一索引錯(cuò)誤?

如何處理重復(fù)唯一索引錯(cuò)誤?

Go
飲歌長(zhǎng)嘯 2023-08-14 16:45:00
我正在使用 MongoDB。將數(shù)據(jù)添加到集合的代碼:  type User struct {  Firstname        string             `json:"firstname" bson:"firstname"`  Lastname         *string            `json:"lastname,omitempty" bson:"lastname"`  Username         string             `json:"username" bson:"username"`  RegistrationDate primitive.DateTime `json:"registrationDate" bson:"registrationData"`  LastLogin        primitive.DateTime `json:"lastLogin" bson:"lastLogin"`}var client *mongo.Clientfunc AddUser(response http.ResponseWriter, request *http.Request) {  collection := client.Database("hattip").Collection("user")  var user User  _ = json.NewDecoder(request.Body).Decode(&user)  insertResult, err := collection.InsertOne(context.TODO(), user)  if err != nil {    // here i need to get the kind of error.    fmt.Println("Error on inserting new user", err)    response.WriteHeader(http.StatusPreconditionFailed)  } else {    fmt.Println(insertResult.InsertedID)    response.WriteHeader(http.StatusCreated)  }}func main() {  client = GetClient()  err := client.Ping(context.Background(), readpref.Primary())  if err != nil {    log.Fatal("Couldn't connect to the database", err)  } else {    log.Println("Connected!")  }  router := mux.NewRouter()  router.HandleFunc("/person", AddUser).Methods("POST")  err = http.ListenAndServe("127.0.0.1:8080", router)  if err == nil {    fmt.Println("Server is listening...")  } else {    fmt.Println(err.Error())  }}func GetClient() *mongo.Client {  clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:27017")  client, err := mongo.NewClient(clientOptions)  if err != nil {    log.Fatal(err)  }  err = client.Connect(context.Background())  if err != nil {    log.Fatal(err)  }  return client}
查看完整描述

1 回答

?
互換的青春

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超6個(gè)贊

如果我添加數(shù)據(jù)庫(kù)中已存在的用戶(hù)名的記錄,我會(huì)得到 -


插入新用戶(hù)時(shí)出錯(cuò)多個(gè)寫(xiě)入錯(cuò)誤:[{寫(xiě)入錯(cuò)誤:[{E11000重復(fù)鍵錯(cuò)誤集合:hattip.user索引:username_unique dup key:{username:“dd”}}]},{}]


行中字段中帶有fmt.Println("Error on inserting new user", err)字符串的記錄已經(jīng)存在,并且該字段是唯一索引。ddusernameusername


我想確保該錯(cuò)誤是確切的 E11000 錯(cuò)誤(關(guān)鍵錯(cuò)誤的重復(fù)集合)。


到目前為止,我err與唯一字段重復(fù)時(shí)出現(xiàn)的整個(gè)錯(cuò)誤字符串進(jìn)行了比較,但它是完全錯(cuò)誤的。是否有辦法從err對(duì)象獲取錯(cuò)誤代碼,或者有其他方法來(lái)解決這個(gè)問(wèn)題?


另外,我找到了mgo包,但為了正確使用它,我必須學(xué)習(xí)它,重寫(xiě)當(dāng)前代碼等等,但老實(shí)說(shuō),它看起來(lái)不錯(cuò):


if mgo.IsDup(err) {

    err = errors.New("Duplicate name exists")

}


查看完整回答
反對(duì) 回復(fù) 2023-08-14
  • 1 回答
  • 0 關(guān)注
  • 167 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)