Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Windows10
- util.inspect
- 맥
- node.js 연동
- query
- Installation
- console.log
- mongo-native
- [Object]
- homebrew
- Jupyter notebook
- 파이썬3
- MacOS
- python3
- Projection
- pip jupyter
- node.js설치
- 맥에 파이썬 설치
- mongodb
- collection.find
- Node.js
- mongoDB [Object]
- mongodb nodejs driver
- nodejs mongodb
- MYSQL
Archives
- Today
- Total
목록console.log (1)
Bon Voyage
Node.js의 MongoDB 쿼리 결과가 [object]로 나올 때
문제 : 서브 도큐먼트 내용이 [Object]로 나온다. js파일을 쉘에서 node로 돌렸더니 콘솔창에 출력되는 결과가 아래와 같았다. 쿼리 결과를 console.log();로 찍는 코드였다. markers: [ [Object], [Object] ] 해결 : 검색해보니, [Object]는 로그안에 key, value가 포함된 객체가 리턴되었기 때문에 나오는 것이다. 위 쿼리 결과도 markers 필드 안에 내장된 도큐먼트가 있기 때문에 그냥 [Object]라고 표시된 것임. 1. String화하여 내용을 표시하자. 객체의 내용을 확인만 하려면 아래와 같이 JSON을 이용하여 스트링으로 바꿀 수 있다. JSON.stringify(objectName); //log에 이렇게 찍자 console.log(JSON..
문제 해결
2019. 7. 18. 12:55