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..