在 google 分析数据 api 中包含回调的额外参数

发布于 2024-10-18 23:38:56 字数 921 浏览 3 评论 0原文

请考虑 Google Analytics API 文档中的示例代码:

function getDataFeed() {
var myFeedUri = 'https://www.google.com/analytics/feeds/data' +
    '?start-date=2009-04-01' +
    '&end-date=2009-04-30' +
    '&dimensions=ga:pageTitle,ga:pagePath' +
    '&metrics=ga:pageviews' +
    '&sort=-ga:pageviews' +
    '&max-results=10' +
    '&ids=' + document.getElementById('tableId').value;

  myService.getDataFeed(myFeedUri, handleDataFeed, handleError);
}

function handleDataFeed(result) {
 // An array of Analytics feed entries.
 var entries = result.feed.getEntries();
 ....
}

我的 javascript 应用程序正在发送具有不同提要参数以及应用程序中不同变量状态的 GA api 请求。由于异步响应,当同时发送多个请求时,处理结果的过程会变得混乱。

有没有办法在请求中包含回调函数(handleDataFeed)的额外参数,该参数可以在处理结果时获取?
或者有其他方法可以解决这个问题,最好不需要创建请求队列。

Consider example code from google analytics api docs:

function getDataFeed() {
var myFeedUri = 'https://www.google.com/analytics/feeds/data' +
    '?start-date=2009-04-01' +
    '&end-date=2009-04-30' +
    '&dimensions=ga:pageTitle,ga:pagePath' +
    '&metrics=ga:pageviews' +
    '&sort=-ga:pageviews' +
    '&max-results=10' +
    '&ids=' + document.getElementById('tableId').value;

  myService.getDataFeed(myFeedUri, handleDataFeed, handleError);
}

function handleDataFeed(result) {
 // An array of Analytics feed entries.
 var entries = result.feed.getEntries();
 ....
}

My javascript app is sending GA api requests with different feed arguments, and different states of variables in my app. Because of async responses, when sending multiple requests simultaneously things get mixed up in handling the results.

Is there a way to include an extra argument to the callback function (handleDataFeed) in the request which can be picked up when handling the results?
Or are there other ways I can solve this, preferably without having to create a queue of requests.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初懵 2024-10-25 23:38:56

您可以尝试对回调函数使用闭包,以便通过词法作用域可以获得额外的数据:

function getDataFeed() {
    var myFeedUri = 'https://www.google.com/analytics/feeds/data' +
        '?start-date=2009-04-01' +
        '&end-date=2009-04-30' +
        '&dimensions=ga:pageTitle,ga:pagePath' +
        '&metrics=ga:pageviews' +
        '&sort=-ga:pageviews' +
        '&max-results=10' +
        '&ids=' + document.getElementById('tableId').value;

      var extraData = "extra data here";

      myService.getDataFeed(myFeedUri, function(result) {
         // An array of Analytics feed entries.
         var entries = result.feed.getEntries();

         // Extra data still in scope here
         alert(extraData);

         ....
      }, handleError);
    }

You could try using a closure for the callback function so the extra data is available via lexical scoping:

function getDataFeed() {
    var myFeedUri = 'https://www.google.com/analytics/feeds/data' +
        '?start-date=2009-04-01' +
        '&end-date=2009-04-30' +
        '&dimensions=ga:pageTitle,ga:pagePath' +
        '&metrics=ga:pageviews' +
        '&sort=-ga:pageviews' +
        '&max-results=10' +
        '&ids=' + document.getElementById('tableId').value;

      var extraData = "extra data here";

      myService.getDataFeed(myFeedUri, function(result) {
         // An array of Analytics feed entries.
         var entries = result.feed.getEntries();

         // Extra data still in scope here
         alert(extraData);

         ....
      }, handleError);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文