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.
我正在使用本机反应和新的鳍状肢调试器。我有一个非常简单的问题,目前当我记录一个大对象时,它只显示在这样的一行中:
有没有办法以更好的方式显示它,比如像这样的 chrome 调试器工具:
因为它会更容易在具有类似铬的显示的对象的日志中导航,而不是水平滚动一行。
提前致谢
Flipper 开发人员计划添加多行支持。
在此之前,您可以尝试使用以下模式格式化日志:
console.log(JSON.stringify(object, null, 2))