在Developer Tools激活之前,简单的AJAX jQuery不会执行 - Firefox& Chartist.js

时间:2016-11-13 21:28:37

标签: jquery ajax debugging firefox chartist.js

我已经看过similar questions有关此主题但从未在Firefox中看到过这种情况。我在运行Yosemite的现代mac上使用Firefox 49.0.2。

我刚刚添加的代码,直到我打开开发者控制台后才会停止:

            var jsonSeries = [];
            $.ajax({
                url: 'https://api.simplymeasured.com/v1/analytics/<account-id>/profiles/metrics?filter=profile.id.eq(<numbers>)&filter=analytics.timeseries_key.gt(2016-10-01)&dimensions=analytics.timeseries_key.by(day)',
                headers: {
                    'Authorization': 'Bearer <a long key>',
                    'Content': 'application/json',
                    'Cache-Control': 'no-cache, no-store'
                    },
                type: 'GET',
                dataType: 'json',
            }).done(function(json) {
                for (var i = 0; i < json.data.length; i++) {
                    jsonSeries.push(json.data[i]['attributes']['metrics']["analytics.audience_count"]);
                }
            });

            var dataCT = {
              labels: ['W1', 'W2', 'W3', 'W4', 'W5', 'W6', 'W7', 'W8', 'W9', 'W10'],
              series: [
                jsonSeries
              ]
            };

            var optionsCT = {
              axisX: {
                labelInterpolationFnc: function(value, index) {
                  return index % 2 === 0 ? value : null;
                }
              }
            };

            new Chartist.Bar('.ct-chart', dataCT, optionsCT);

之后初始化的图表甚至可以很好地加载,它只是空的。即使我的开发者控制台最初是打开的,实际数据也不会出现,直到我只是调整开发者控制台的大小。似乎开发人员控制台上的任何触发器或操作都会带来数据。

开发人员控制台最初打开,重新加载页面,甚至等待10秒以上以防万一: ajax data not working until developer console resized

在调整开发人员控制台后只调整几个像素: after resizing developer console - ajax jquery

0 个答案:

没有答案