Promise ๊ฐ์ฒด๋ฅผ ์ฒ๋ฆฌํ๋ ค๋ฉด then() ๋๋ async/await ๊ตฌ๋ฌธ์ ์ฌ์ฉํ์ฌ Promise์ ๊ฒฐ๊ณผ๋ฅผ ์ฒ๋ฆฌํด์ผ ํฉ๋๋ค. 1. then()์ ์ฌ์ฉํ๋ ๋ฐฉ๋ฒ: this.rsltData .then(response => { // Promise๊ฐ ์ฑ๊ณต์ ์ผ๋ก ์ดํ๋ ๊ฒฝ์ฐ if (response.status === '000') { console.log({ status: response.status, msg: response.msg, result: response.result.data // data ๋ฐฐ์ด๋ง ์ถ๋ ฅ }); } else { console.log('์ค๋ฅ ๋ฐ์:', response.msg); } }) .catc..