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 | 31 |
Tags
- 개발자
- techEmpower
- server
- mariadb
- H2O
- 개발
- C
- NGINX
- javascript
- 자바
- 해석
- centOS7
- java
- 번역
- 한글
- Portfolio
- 컴퓨터과학총론
- unity
- php
- error
- kakao
- caddy
- MySQL
- C lanuage
- 구글
- 안드로이드
- it
- android
- ubuntu
- 프래그먼트
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 |