gpt4 book ai didi

javascript - 如何从 $.getJSON 函数返回变量

转载 作者:IT王子 更新时间:2023-10-29 03:00:05 26 4
gpt4 key购买 nike

我想返回 StudentId 以在 $.getJSON()

范围之外的其他地方使用
j.getJSON(url, data, function(result)
{
var studentId = result.Something;
});

//use studentId here

我想这与作用域有关,但它的工作方式似乎与 c# 不同

最佳答案

it doesn't seem to work the same way c# does

要完成类似于 C# 的作用域,请禁用异步操作并将数据类型设置为 json:

var mydata = [];
$.ajax({
url: 'data.php',
async: false,
dataType: 'json',
success: function (json) {
mydata = json.whatever;
}
});

alert(mydata); // has value of json.whatever

关于javascript - 如何从 $.getJSON 函数返回变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31129/

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