Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如下请见。
让我知道在控制台中将其显示为代理对象的过程
代理很容易解决,
只需对对象进行字符串化和解析以在控制台上显示它。
利用: console.log(JSON.parse(JSON.stringify(proxyobj)));
console.log(JSON.parse(JSON.stringify(proxyobj)));
您也可以简单地对其进行字符串化:
console.log(JSON.stringify(proxyobj));
但如果对象很大,我建议也进行解析。