gpt4 book ai didi

jquery - 通过 $.getJSON 使用多个 URL

转载 作者:行者123 更新时间:2023-12-01 00:34:05 25 4
gpt4 key购买 nike

我有几行代码:

var url = 'http://api.spitcast.com/api/spot/forecast/1/';
var url_wind = 'http://api.spitcast.com/api/county/wind/orange-county/';

$.getJSON(url, function (data) {

etc...

如何将这两个 URL 拉入我的 $.getJSON 命令中?我认为这会很简单:

$.getJSON(url, url_wind, function (data) {

我还尝试将这两个 URL 分配给同一个变量,如下所示:

var url = ['http://api.spitcast.com/api/spot/forecast/1/','http://api.spitcast.com/api/county/wind/orange-county/'];

不幸的是,我没能从第二个网址中提取信息。

有人可以帮帮我吗?谢谢。

最佳答案

您需要两次调用,但可以使用 $.when 将它们绑定(bind)到同一个 done() 处理程序:

var url = 'http://api.spitcast.com/api/spot/forecast/1/';
var url_wind = 'http://api.spitcast.com/api/county/wind/orange-county/';

$.when(
$.getJSON(url),
$.getJSON(url_wind)
).done(function(result1, result2) {

});

关于jquery - 通过 $.getJSON 使用多个 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20148239/

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