gpt4 book ai didi

javascript - 无法使用网络服务显示记录

转载 作者:行者123 更新时间:2023-11-28 09:07:28 24 4
gpt4 key购买 nike

此代码工作正常,但不显示记录。如果我从文件中获取记录,则处于警报状态,其工作正常。

$j().ready(function(){      

var result =$j.ajax({
type: "GET",
url: "webService address",
dataType :'json',
contentType:'application/json; charset =utf-8',
success:function(data)
{
$j.each(data, function(index,element){
alert("Successful here: "+element);

});
}
});
alert("result"+result);

});

最佳答案

欢迎来到异步的奇妙世界...

首先,jQuery get 不会返回数据,这些数据需要由回调处理(这在您的帖子中起作用)

var result = null;
$j(document).ready(function(){
$j.ajax({
type: "GET",
url: "webService address",
dataType :'json',
contentType:'application/json; charset =utf-8',
success:function(data)
{
result = data;
$j.each(data, function(index,element){
alert("Successful here: "+element);

});
}
});
alert("result"+result);

});

这可能无法正常工作,因为 jQuery ajax 是异步,并且当 GET 仍在读取数据但尚未准备好时可能会弹出警报!!!!

关于javascript - 无法使用网络服务显示记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16811635/

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