nationalDayList: []
getNationalList({commit}, currentYear) {
let url = "http://localhost:3000/api";
let ServiceKey = '?_type=json&ServiceKey={APISERVICE키}&solYear=';
axios.get(url + ServiceKey + currentYear.toString(), {headers: {"Accept": "application/json"}})
.then(res => {
let nationalDayList = res.data["response"]["body"]["items"]["item"];
commit('getNationalList', nationalDayList);
}).catch(err => {
console.log("error : ", err);
})
}
getNationalList(state, data) {
state.nationalDayList.push(data);
}
axios
비동기 처리는 action
에서 이루어 져야 하기 때문에,
action
부분에서 처리하고 데이터를 mutation
으로 커밋 해서 처리하였다.
url
부분에 api주소값을 직접 넣으면 CORS
오류가 발생하여,
proxy
설정을 해줬다. 그래서 url
부분에 api주소가 있는게 아니라,
http://localhost:3000/api 가 있는 것이다.
proxy: {
'/api': {
target: 'http://apis.data.go.kr/B090041/openapi/service/SpcdeInfoService/getHoliDeInfo',
changeOrigin: true,
secure: false,
pathRewrite: {
'^/api': ''
}
}
}
/api
로 접근하면 target
으로 보내겠다는 뜻
여기서 오류가 계속 나서 axios
코드 부분을 계속 수정하고 했는데,
알고보니 오류는 proxy
설정에서 난 것 이였다.
pathRewrite
설정을 해주지 않아서 주소에 자꾸 api가 들어가서 오류가 났던것 ㅠ..
다음엔 오류가나면 크롬 개발자모드를 통해서 주소값이 어디를 향하고 있는지 확인을 해야 겠다.
부트스트랩이 색상을 자동으로 지정하기 때문에,
css값을 넣어도 변경되지 않았다.
.page-item.active .page-link {
z-index: 3;
color: #fff;
background-color: #42b983;
border-color: #42b983;
}
[{ }]
안에 _rowVariant:'primary'
이런식으로 넣으면 된다.