sails.js
Song 용 MongoDB 어댑터
수색…
구성
config/connections.js
에서 데이터베이스 설정을 구성 할 수 있습니다.
예:
someMongoDb: {
adapter: 'sails-mongo',
host: 'localhost', // defaults to `localhost` if omitted
port: 27017, // defaults to 27017 if omitted
user: 'username_here', // or omit if not relevant
password: 'password_here', // or omit if not relevant
database: 'database_name_here' // or omit if not relevant
}
또는 Mongo 구성을 URL로 지정할 수 있습니다
someMongoDb: {
adapter: 'sails-mongo',
url: mongodb://username:password@hostname:port/database
}
설치
NPM에서 설치하십시오.
npm install sails-mongo --save
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow