使用 Rack 中间件显示页面响应时间和 AJAX 请求响应时间

发布于 2024-11-26 19:28:21 字数 75 浏览 1 评论 0原文

我想编写一个 Rack 中间件,它将显示渲染页面的响应时间,以及页面上发出的任何 AJAX 请求的响应时间。执行此操作的最佳方法是什么?

I want to write a piece of Rack middleware that will display the response time for rendering the page, as well as the response times for any AJAX requests made on the page. What's the best way to go about doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白首有我共你 2024-12-03 19:28:21

您可以尝试基于此railscast的内容。它将响应时间作为 HTML 注释注入到您的页面源中。对于 AJAX 请求,您可以检查 content-type/x-requested-with 标头,以适当的格式注入计时信息。

You can try something based on this railscast. It injects response times as HTML comments into your page source. For AJAX requests, you can inspect the content-type/x-requested-with headers to inject the timing information in the appropriate format.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文