gpt4 book ai didi

JavaScript : push is not a function for array?

转载 作者:行者123 更新时间:2023-11-28 12:41:29 34 4
gpt4 key购买 nike

$(function(){
$('body').on('click', '.queue', function(event) {
var video = $(this).closest('.video');
console.log(video);
var queue = localStorage.getItem('queue');
if (! queue ) {
queue = [];
}
queue.push(video);
localStorage.setItem('queue', queue);
console.log(localStorage.getItem('queue'));
bootstrap_alert.success('queued!');
});
});

当我尝试测试这个时,我在控制台上收到错误消息

TypeError: queue.push is not a function 

queue.push(video);

我在这里做错了什么?

最佳答案

var queue = localStorage.getItem('queue');

localStorage 不存储(或返回)数组。因此,queue 不是一个数组。

关于JavaScript : push is not a function for array?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11961931/

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