Skip to main content
Aman Beniwal a posé une question dans #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 réponses
  1. 18 août 2021, 09: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