返回number以内的随机数
const tag = Math.floor(Math.random()* number);
例如6以内的数字
const tag = Math.floor(Math.random()* 6);
获取网络图片大小
Image.getSize(imageUrl, (width, height) => {
}, (_error) => {
// 获取大小失败
}
保留两位小数
var f=1.1111; // 2/1.1/2.0/
f.toFixed(2);