gpt4 book ai didi

javascript - 将 JSON 结果添加到 JavaScript 列表

转载 作者:行者123 更新时间:2023-11-28 19:10:15 27 4
gpt4 key购买 nike

我创建了一个脚本来调用页面,该页面通过 JSON 返回日期字符串列表。如何将这些日期添加到我创建的数组中?

var bookedDates= [];
$(document).ready(function () {
$.ajax({
url: "/Ajax/getBooked",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
alert("success");
//Add results to list here?
}
});
});

我是 JavaScript 新手。

最佳答案

您可以使用 Array.prototype.concat()

The concat() method returns a new array comprised of the array on which it is called joined with the array(s) and/or value(s) provided as arguments.

var new_array = old_array.concat(value1[, value2[, ...[, valueN]]])

代码

bookedDates = bookedDates.concat(response)
<小时/>

或者,使用 Array.prototype.push()

The push() method adds one or more elements to the end of an array and returns the new length of the array

代码

Array.prototype.push.apply(bookedDates, response);

关于javascript - 将 JSON 结果添加到 JavaScript 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30848662/

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