Commit e8d4c3a3 authored by KangMin An's avatar KangMin An
Browse files

Update: 외부 날씨 요청에 대한 처리.

parent 5dfc26a1
......@@ -3,11 +3,11 @@
## API 명세 Table
| Category | HTTP Method | URI | Description |
| :------------- | :---------: | :---------------- | :---------------------------------------------------------- |
| :------------- | :---------: | :-------------------- | :---------------------------------------------------------- |
| Root | ﹒ | /api | 서버의 기본 경로 |
| Data Collector | GET | /data/input?... | 아두이노를 통해 수집한 자료 등록 (내부, 외부는 쿼리로 구분) |
| Data | GET | /data/user | 사용자 지정 장소의 날씨 데이터 요청 |
| Data | GET | /data/outside/:id | 해당 지역구의 날씨 데이터 요청 |
| Data | GET | /data/outside?locCode | 해당 지역구의 날씨 데이터 요청 |
| Data | GET | /data/loccode | 행정 구역 코드 요청 |
| Auth | POST | /signup | 회원가입 요청 |
| Auth | POST | /login | 로그인 요청 |
......
......@@ -117,14 +117,15 @@ export const getUserWeatherData = (req, res) => {
};
// 실외 날씨 데이터 요청 처리
export const getOutWeatherData = (req, res) => {
export const getOutWeatherData = async (req, res) => {
const {
body: { loc_code },
query: { locCode },
} = req;
try {
// 실외 지역 번호를 통해 날씨 데이터 전송.
const result = db.Weather_Out.findAll({
where: { loc_code: loc_code },
const result = await db.Weather_Out.findAll({
where: { loc_code: locCode },
order: [["collected_at", "DESC"]],
logging: false,
});
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment