일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- pbkdf2-password
- multidex
- MEAN stack
- elemMatch
- event-driven
- Mongoose
- 64k method
- instance
- PBKDF2
- OOP
- Git
- Linux
- MaridDB
- centos
- Mongo
- Android
- iIntelliJ
- react-native
- 다중 서버 명령
- Modulization
- Java
- ssh key
- memory structure
- rest-assured
- window
- Express
- API테스트
- proguard
- Setup
- node
- Today
- Total
목록Mongo (6)
천줄코딩도 한 걸음부터
Stack overflow와 Velopert님의 블로그를 참조하였습니다. 기존 document를 변경은 다음과 같은 명령으로 수행할 수 있었습니다. db.collection_name.update({document 쿼리 조건}, {변경할 데이터})' 하지만 이렇게 변경하게 되면 중복된 key의 데이터에 경우 기존 데이터에 덮어쓰기가 됩니다. ex) { "name" : "abc", "item" : [{ "name" : "sword", "price" : 1000 }, { "name" : "helm", "price" : 500 }] } 이 document의 item에 armor 객체를 추가하려고 합니다. db.user.update({ name : "abc" }, { item : [{ name : "armor",..
// mongodb setup var mongoose = require('mongoose'); mongoose.connect('mongodb://localhost/mydb'); var db = mongoose.connection; db.on('error', console.error.bind(console, 'connection error:')); db.once('open', function() { // we're connected! console.log('connected successfully'); }); 다음과 같은 Warning이 발생함(node:1876) DeprecationWarning: `open()` is deprecated in mongoose >= 4.11.0, use `openUri()..
1. Model을 만든다.(=DTO or VO) models/user.jsmodels/user.js var mongoose = require('mongoose'); var Schema = mongoose.Schema; var userSchema = new Schema({ email: String, passwd: String, created_date: {type: Date, default: Date.now()} }); module.exports = mongoose.model('user', userSchema); 2.라우팅 파일 수정 routes/index.js routes/index.js 파일에 만들었던 User Model을 추가한다. 구현한 기능은 3가지 입니다. (1) POST /registMongoD..