반응형
axios
async getCategoryList(url, conceptScheme){
var responsData = await this.$axios.$get(url+ '?conceptScheme=' +conceptScheme)
this.catgryList = responsData.list
}
fetch
- fetch는 json으로 받아오지 않기 때문에 .then을 이용에 reponse값을 json형식으로 변환해 주어야 한다.
async getCategoryList(url, conceptScheme){
var option = {
method: 'GET',
}
await fetch(url+ '?conceptScheme=' +conceptScheme)
.then(result => result.json())
.then(jsonData => this.catgryList = jsonData.list);
}
반응형
'WEB' 카테고리의 다른 글
@Resource, @Autowired, @Inject 차이점 (0) | 2022.08.18 |
---|---|
[Eclipse CodeMax Error]An error has occurred. See error log for more details. java.lang.NullPointerException (0) | 2022.07.27 |
@RequestBody @ModelAttribute @RequestParam @PathVariable 차이점 (0) | 2022.07.19 |
[NUXT] CORS 해결방법 (0) | 2022.07.06 |
[연예인으로 보는 외모티어 테스트(여자 편) APP 출시] (0) | 2022.07.05 |