Skip to main content

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