如何使用 JavaScript 近似计算网站的连接速度?

How to calculate approximately the connection speed of a website using JavaScript?(如何使用 JavaScript 近似计算网站的连接速度?)
本文介绍了如何使用 JavaScript 近似计算网站的连接速度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用 JavaScript 近似计算网站的连接速度?

How to calculate approximately the connection speed of a website using JavaScript?

我想创建一个类似的 javascript 小部件,它将计算打开当前打开页面的速度.

I want to create a javascript widget like, which will calculate the speed opening the current opened page.

我在问这是否可以仅使用 javascript 来完成,想法是什么.

I am asking if this can be done using just javascript and what will be the idea.

更新

请注意,页面大小始终为未知.

Note that the page size is always Unknown.

推荐答案

这里是一个使用 AJAX 和 .Net 后端的示例,尽管它可以是任何东西.

Here's an example using AJAX with .Net backend, though it could be anything.

这里是一个使用图片的简单示例.

Here's a simpler example using an image.

关键是要有一个已知大小的页面/对象,并在浏览器检索它时捕获开始和结束时间.然后只需将大小除以某个 [时间单位] 即可得到每个 [时间单位] 的 [大小].然后用数学把它翻译成你想要的.

The key is to have a page/object of a known size and capture the start and end times as the browser retrieves it. Then simply divide the size by some [unit of time] to get [size] per [unit of time]. Then use math to translate this into whatever you want.

这篇关于如何使用 JavaScript 近似计算网站的连接速度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)