"category" : 2, [2] => "category" : 3 我可-6ren">
gpt4 book ai didi

javascript - 改变 JavaScript 对象以使其更加数字化

转载 作者:行者123 更新时间:2023-12-02 18:48:48 24 4
gpt4 key购买 nike

我想更改这个 JS 对象。我目前有:

for(var i = 0; i < destination_categories_selected.length; i++)
{
destination_categories_obj[i] = {
"category" : $(destination_categories_selected[i]).data("dkDropdownValue")
}
}

哪个输出和对象看起来像

[0] => "category" : 1,
[1] => "category" : 2,
[2] => "category" : 3

我可以这样做,以便将该类别完全删除为:

[0] => 1,
[1] => 2,
[2] => 3

最佳答案

如果我正确理解了您的问题,则只需将值直接分配给有问题的 destination_categories_obj 元素,而不是为其分配一个对象:

for(var i = 0; i < destination_categories_selected.length; i++) {
destination_categories_obj[i] = $(destination_categories_selected[i]).data("dkDropdownValue");
}

关于javascript - 改变 JavaScript 对象以使其更加数字化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16060431/

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