本文主要是介绍复杂随机函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
async getHome() {
let temp = await http.getHome();
//随机方法
function getRandomElements(arr, count) {
var shuffled = arr.slice(0),
i = arr.length,
min = i - count,
temp,
index;
while (i-- > min) {
index = Math.floor((i + 1) * Math.random());
temp = shuffled[index];
shuffled[index] = shuffled[i];
shuffled[i] = temp;
// console.log(shuffled[i]);
}
return shuffled.slice(min);
}
if (temp != null) {
this.recommend.push(getRandomElements(temp, 1));
}
// console.log(this.recommend);
},
这篇关于复杂随机函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!