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
답변 2개
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