js字节转换字节转换GB等
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js字节转换字节转换GB等相关的知识,希望对你有一定的参考价值。
//文件大小换算
function bytesToSize(bytes) {
if (bytes === 0) return ‘0 B‘;
var k = 1024;
sizes = [‘B‘,‘KB‘, ‘MB‘, ‘GB‘, ‘TB‘, ‘PB‘, ‘EB‘, ‘ZB‘, ‘YB‘];
i = Math.floor(Math.log(bytes) / Math.log(k));
var num = bytes / Math.pow(k, i);
return num.toPrecision(3) + ‘ ‘ + sizes[i];
//return (bytes / Math.pow(k, i)) + ‘ ‘ + sizes[i];
//toPrecision(3) 后面保留一位小数,如1.0GB //return (bytes / Math.pow(k, i)).toPrecision(3) + ‘ ‘ + sizes[i];
}
以上是关于js字节转换字节转换GB等的主要内容,如果未能解决你的问题,请参考以下文章
python 智能转换字节为KB / MB / GB / TB / PB ...