問題:
問題:multiple write errors: [{write errors: []}, {(UnknownReplWriteConcern) No write concern mode named 'majority' found in replica set configuration}]
問題:
問題:
嘗試插入時使用MongoDB Go 驅動程式透過POST 請求將物件匯入MongoDB,使用者可能會遇到以下情況錯誤:
mongodb+srv://user:[email protected]/DBname?retryWrites=true
此錯誤表示連接字串中指定的寫入關注模式(本例中為“majority”)未被識別MongoDB副本
解決方案:
要解決此錯誤,請從連接字串中刪除 &w=majority 參數。修改後的連接字串應如下所示:
解釋:
以上是為什麼我的 MongoDB Go 驅動程式會回傳「未找到名為『majority』的寫入關注模式」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!