1

我已经尝试了这个论坛和其他人的几种解决方案,但似乎没有任何效果。我不确定这是否是一个逻辑问题,根本无法按照我想要的方式完成,或者我只是没有以正确的方式访问返回。

我想要做的是列出一组链接(代码在外部文件 Main.js 中),当点击链接时获取 id 并使用它进行第二次 ajax 调用并打开也会打开第二个窗口(代码在外部文件 Cites.js 中)包含有关单击的链接的更多信息。

问题是我无法从 Main.js 中的第二个 ajax 调用中获取要在我的 Cites.js 文件中使用的 id。我正在尝试返回第二个 ajax 调用,然后使用 .done() 来获取返回的数据或尝试获取全局变量 projectId。

这是我的 Main.js 中的代码

var projectId = '';
var promise = $.ajax({
    type: 'GET',
    url: 'https://www.sciencebase.gov/catalog/items?parentId=504108e5e4b07a90c5ec62d4&max=60&offset=0&format=jsonp',
    jsonpCallback: 'getSBJSON',
    contentType: "application/json",
    dataType: 'jsonp'
    }).then(function(json) {
                 var linkBase = "http://www.sciencebase.gov/catalog/item/";
                 var link = "";                     
                 var itemId = "";                    
                 var urlId = "";
                 var itemLinkLength = "";

                 $.each(json.items, function(i,item) {
                     link = linkBase + this.id;

                     $('#sbItems').append('<li><b><a href="' + link + '" id="idNum' + i + ' ">' + this.title + '</a> - </b>' + this.summary + '</li>');                     
                 });                     

                 $('#sbItems a').on('click', function (e) {
                     e.preventDefault();                         

                     var str = $(this).attr('id');                         

                     if (str.length == 7) {                      
                          itemId = str.slice(5,6);
                     } else if (str.length == 8) {
                          itemId = str.slice(5,7);
                     }

                     urlId = json.items[itemId].id;
                     //alert(urlId);

                     return $.ajax({
                                    type: 'GET',
                                    url: 'https://www.sciencebase.gov/catalog/itemLink/' + urlId + '?format=jsonp',
                                    jsonpCallback: 'getSBJSON',
                                    contentType: "application/json",
                                   dataType: 'jsonp',
                                   success: function(json) {
                                            if (json.length > 0) {
                                                projectId = json.id;
                                                window.open('Citations.html', '_self');
                                            } else {
                                                var page = linkBase + urlId;
                                                window.open(page);
                                            }

                                   },
                                   error: function(e) {
                                       console.log(e.message);
                                   }                     
                     }); // END 2nd ajax
                }); // END Click event
}); // END promise

这就是我在 Cites.js 中的称呼方式

promise.done(function () {
    alert(projectId);
});

谢谢您的帮助

4

1 回答 1

0

你这样做promise = $.ajax(…).then(function(){…})了——但该then方法确实为匿名函数的结果创建了一个新的承诺(在旧版本的 jQuery 中,这是pipe)——另请参阅pipe() 和 then() 文档与 jQuery 1.8 中的现实

但是,由于您没有从 anon 函数返回任何内容,因此您不会在promise.done().

如果你想做一个链 ajax->click->ajax->done,你需要手动为 click 处理程序构建一个 Promise。

于 2013-02-21T21:31:42.850 回答