怎么将bytes数据转换为人类可读的数据
function size(bytes) {
if (bytes == 0) {
return "0.00 B";
}
var e = Math.floor(Math.log(bytes) / Math.log(1024));
return (bytes / Math.pow(1024, e)).toFixed(2) +
' ' + ' KMGTP'.charAt(e) + 'B';
}
分类:
暂无分类
标签:
development
版权申明
本文系作者 @Tis-FYM 原创发布在Tis-FYI站点。未经许可,禁止转载。
暂无评论数据