Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- php
- mariadb
- C lanuage
- 해석
- unity
- C
- error
- android
- it
- 개발자
- 안드로이드
- caddy
- kakao
- 번역
- MySQL
- ubuntu
- NGINX
- 구글
- server
- 개발
- Portfolio
- techEmpower
- 자바
- 한글
- javascript
- 컴퓨터과학총론
- 프래그먼트
- H2O
- centOS7
- java
Archives
- Today
- Total
개발모음집
JSON 구조를 객체쓰지 않고 만들때 실수한 점 본문
geos = `{"ip": "${parseData.httpData.ip}", "country": "${geo.country}", "city": "${geo.city}", "latLng": "${geo.ll}"}`;
return res.status(200).json(`[ ${geos} ]`);
// 틀린 코드
geos = `{"ip": ${parseData.httpData.ip}, "country": ${geo.country}, "city": ${geo.city}, "latLng": ${geo.ll}}`;
return res.status(200).json(`"geos" : [ ${geos} ]`);
// 맞는 코드
geos = `{"ip": "${parseData.httpData.ip}", "country": "${geo.country}", "city": "${geo.city}", "latLng": "${geo.ll}"}`;
return res.status(200).json(`[ ${geos} ]`);
여기서 실수한 점
1. return 할 때 JSON 배열에 이름을 붙여줌.
res.status(200).json(`"geos" : [ ${geos} ]`);
http://tcpschool.com/json/json_basic_structure
2. JSON 값에 ""로 감싸지 않음
'client' 카테고리의 다른 글
Node.JS : WebStorm “require”사용시 Unresolved function or method Error (0) | 2019.11.27 |
---|---|
TypeError: this.cliEngine is not a constructor (0) | 2019.10.30 |
webstorm terminal console font size (0) | 2019.07.29 |
javasrcript crawler, puppeteer RR_TUNNEL_CONNECTION_FAILED (0) | 2019.06.14 |
sequelize deprecated String based operators are now deprecated. (0) | 2019.03.16 |