gpt4 book ai didi

jquery - 从 Scope 中获取 JSON 数据

转载 作者:行者123 更新时间:2023-12-04 07:50:50 25 4
gpt4 key购买 nike

我在 JSON 中有这些数据:

{"minmax":["0.01","67.00"]}
我想使用 jQuery 来获取它,这就是我正在做的事情:
$.getJSON("../../dados/opcoesMinMax.json", function(data) {
var getMinMax = data;
});

// Need to use data here, out of the scope
我也尝试使用回调来做到这一点,这样做:
function getMinMax(callback) {
$.getJSON("../../dados/opcoesMinMax.json", function(data) {
callback(JSON.stringify(data));
});
}

// Need to use data here, out of the scope
即使使用回调,我也无法恢复数据。 console.log(getMinMax);返回我的功能。
console.log(getMinMax());返回我未定义并说 回调不是函数 .

最佳答案

您使用的第二种模式是有效的,并且会起作用。问题是因为在您调用 getMinMax()您需要提供回调函数作为参数。这就是您当前看到“回调不是函数”错误的原因。试试这个:

function getMinMax(callback) {
$.getJSON("../../dados/opcoesMinMax.json", callback);
}

getMinMax(data => {
// this is the callback function. Work with the data here...
console.log(data);
});

关于jquery - 从 Scope 中获取 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66986967/

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