gpt4 book ai didi

javascript - 从数组中选择随机项并将其删除,数组为空后重新启动

转载 作者:行者123 更新时间:2023-11-30 11:53:08 25 4
gpt4 key购买 nike

我正在尝试设置从数组中选择一个随机项。选择后,需要将其从数组中删除,以免再次被选中。最后,一旦数组被清空,进程就需要重新启动。我正在尝试使用 sessionStorage 执行此操作,因为我需要跟踪选择了哪个随机项目。

// Get array from sessionStorage
myArray = JSON.parse(sessionStorage.getItem("array"));

// If array does not exist in sessionStorage, set it
if (myArray === null) {
sessionStorage.setItem("array", JSON.stringify(["apple", "orange", "banana"]));

// If array exists in sessionStorage, use it to get random item and empty it from array
} else {
var randomItem = myArray[Math.floor(Math.random() * myArray.length)];
console.log(randomItem);
console.log(myArray.splice(randomItem, 1));
}

可以看到我的JSFiddle here .

编辑:更新了我的作品 here 。最终阵列被清除并重新启动。

最佳答案

这可能不会在此沙箱中运行(使用 localstore),但我认为如果您尝试过它应该会起作用。

// -------------------------------
// see: http://stackoverflow.com/questions/2450954/how-to-randomize-shuffle-a-javascript-array
// -------------------------------
function _shuffle (array) {
for (var i = array.length - 1; i > 0; i--) {
var j = Math.floor(Math.random() * (i + 1));
var temp = array[i];
array[i] = array[j];
array[j] = temp;
}
return array;
}
// -------------------------------

// -------------------------------
// Get the next "random" item.
// -------------------------------
var randomItem = (function(allItems){
var _key = "array";
var _currentItems = [];

try {
_currentItems = JSON.parse(localStorage.getItem(_key) || "[]");
} catch (e) {
_currentItems = [];
}

if (!Array.isArray(_currentItems) || _currentItems.length === 0 ) {
console.log("resetting");
_currentItems = _shuffle(allItems.slice());
}

var _selectedItem = _currentItems.pop();
localStorage.setItem(_key, JSON.stringify(_currentItems));

return _selectedItem;
})(["apple", "orange", "banana"]);
// -------------------------------

console.log(randomItem);

一个更简单的版本 [带有上面的 _shuffle() ] 可能只是:

var nextItem  = (function(all){
var _key = "array";
var _current = JSON.parse(localStorage.getItem(_key) || "[]");
if (_current.length === 0) { _current = _shuffle(all.slice()); }

var _selected = _current.pop();
localStorage.setItem(_key, JSON.stringify(_current));

return _selected;
})(["apple", "orange", "banana"]);

关于javascript - 从数组中选择随机项并将其删除,数组为空后重新启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38882487/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com