我想测量我的应用程序,它对性能非常敏感。
为此,我想知道Chrome开发工具或其他内容中是否有选项可以获得“网络”标签中提供的视图,但是我自己的JS触发事件在它(如红/蓝线)。
有办法吗?
答案 0 :(得分:8)
显而易见的解决方案是使用Console。它为您提供了比简单console.log
更多的工具:
console.log("%cThis will be formatted with large, blue text", "color: blue; font-size: x-large");
)
console.time("Array initialize"); longRunningOperation(); console.timeEnd("Array initialize");
)
console.group("Authenticating user '%s'", user); authentication(); console.groupEnd();
)
console.timeStamp("Adding result");
)
这应该足以创建自定义事件的可读日志。 See the official docs for more tips on using the Console.