我已将我的跟踪 ID 添加到我的 config.toml 中,并且一切看起来都匹配。然而,当我启动https://analytics.google.com/时,我还没有看到任何实时数据进入
theme = "osprey-delight"
tags = ["personal", "homepage", "portfolio"]
# canonifyURLS = true
googleAnalytics = "G-SYJ123456"
disableKinds = ["taxonomy", "taxonomyTerm"] # This theme does not currently use "tag" and "category" taxonomies
enableEmoji = true
pygmentsUseClasses = true
我正在使用一个主题(osprey-delight),在 layouts/partials 目录中,有一个包含模板字符串的 head.html,将粘贴在下面:
{{ if .Site.GoogleAnalytics }}
{{ template "_internal/google_analytics_async.html" . }}
{{ end }}
当我部署到 firebase 时,我确实在 /public 目录中的主 index.html 文件中看到了 ga 的脚本标记,如下所示 -
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'G-12345689', 'auto');
ga('send', 'pageview');
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
我错过了什么?我觉得我做的一切都不对,但还没有运气。