Google AnalyticsAPI:未捕获的TypeError:无法读取未定义的属性“请求”

时间:2018-01-27 08:50:27

标签: javascript google-analytics analytics google-analytics-api gapi

我一直在寻找解决方案,但由于我是新手,我可能会遗漏一些明显的东西?我正在玩Quick Start示例,尝试设置批量请求,因为我正在尝试了解它们的工作原理:)。

这是代码:

(index):31 Uncaught TypeError: Cannot read property 'request' of undefined
    at queryReports ((index):31)
    at (index):56

我收到以下错误(文件名是index.html): 第一个错误:

cb=gapi.loaded_0:73 Uncaught wY {message: "Batch entry is missing a request method", stack: "gapi.client.Error: Batch entry is missing a reques…zhnSLA1FmTcs72V1b-s3Z55A/cb=gapi.loaded_0:77:300)"}

第二个错误:

Game.aggregate([{
                        $match: {
                            "_id": {
                                "$in": result.games
                            }
                        }
                    },
                        {
                            $unwind: "$gamers",
                        },
                        {
                            $group: {
                                _id: {
                                    $month: "$gamers.playedAt",
                                },
                                count: {
                                    $sum: 1
                                }
                            }
                        }
                    ])

有人可以帮我吗?

非常感谢, 学家

0 个答案:

没有答案