Skip to main content
Aman Beniwal 님이 #Javascript Code에 질문했습니다

Hi new javascript learner here, how to solve the proxy issue whenever i log any thing it comes as proxy even though it has some data

 Proxy Data

 

#Javascript Code

답변 2개
  1. 2021년 8월 18일 오전 9:50

    Hi, This is an additional layer of security but if you want to log the data for debugging purposes then use JSON.stringify() method

     

    console.log(JSON.stringify(data));

    console.log(JSON.stringify(this.data));

     

    Hope this helps,let me know

0/9000