«mongoose» 태그된 질문

Mongoose는 MongoDB 객체 모델링 도구 또는 ODM (Object Document Mapper)으로 JavaScript로 작성되었으며 비동기 환경에서 작동하도록 설계되었습니다.

3
객체 ID 배열로 몽구스 스키마를 만드는 방법은 무엇입니까?
몽구스 사용자 스키마를 정의했습니다. var userSchema = mongoose.Schema({ email: { type: String, required: true, unique: true}, password: { type: String, required: true}, name: { first: { type: String, required: true, trim: true}, last: { type: String, required: true, trim: true} }, phone: Number, lists: [listSchema], friends: [mongoose.Types.ObjectId], accessToken: { type: …


17
Mongoose Schema가 모델에 등록되지 않았습니다.
나는 평균 스택을 배우고 있으며 서버를 시작하려고 할 때 npm start 다음과 같은 예외가 발생합니다. schema hasn't been registered for model 'Post'. Use mongoose.model(name, schema) 다음은 /models/Posts.js 내부의 코드입니다. var mongoose = require('mongoose'); var PostSchema = new mongoose.Schema({ title: String, link: String, upvotes: { type: Number, default: 0 }, comments: …

17
MongoDB 연결 오류 : MongoTimeoutError : 30000ms 후에 서버 선택 시간이 초과되었습니다
다음 자습서를 읽는 풀 스택 앱을 만들려고합니다. https://medium.com/javascript-in-plain-english/full-stack-mongodb-react-node-js-express-js-in-one-simple-app-6cc8ed6de274 나는 모든 단계를 수행 한 다음 실행하려고했습니다. node server.js 그러나 다음과 같은 오류가 발생했습니다. MongoDB 연결 오류 : MongoTimeoutError : Timeout._onTimeout (C : \ RND \ fullstack_app \ backend \ node_modules \ mongodb \ lib \ core \ sdam \ server_selection.js : …

4
MongoError :이 MongoDB 배포는 재시도 가능한 쓰기를 지원하지 않습니다. 연결 문자열에 retryWrites = false를 추가하십시오
"mongoose": "^5.7.1"Node.js 프로젝트에서 사용 하고 있습니다. 두 문서로 업데이트하는 API를 만들고 있습니다. 따라서 다음과 같은 트랜잭션을 사용하고 있습니다. // Start the transaction session = await mongoose.startSession() session.startTransaction() await Promise.all([ <1st update operation>, <2nd update operation> ]) // Commit the transaction session.commitTransaction() 로컬 환경 에서이 API를 칠 때 다음 오류가 발생합니다. …
10 mongodb  mongoose 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.