카테고리 없음

Proxy(Array){} 로 console.log 확인 힘들때 해결방법

으농농이 2024. 6. 26. 17:23

가끔가다 겪는 문제지만 js 에서 Proxy(Array) 가 걸리는 경우가 있다 

이를 피하기 위해서 JSON.stringity( data ) 를 사용하면 정상적으로 보여지는 것을 확인할 수 있다 

fieldSetting(){
        console.log(' fieldSetting ' , this.months );
        this.months.forEach(month => {
            this.testField.push(this.createField(month, 1));
        });
        console.log(' Proxy{} 로 나옴  -> ', JSON.parse(JSON.stringify(this.testField)) );
        console.log(' 정상적으로 확인가능 -> ', JSON.stringify(this.testField) );
    }