当 _domainname 设置了错误的域时,GA 跟踪数据会去哪里?
Where does GA tracking data go when wrong domain at _domainname is set?
我有几周不正确地设置了 _domainname 值。
UA 代码设置正确。
在 _domainname 设置不当之前,所有数据都被正确捕获。
设置不正确的那两周数据去了哪里?
是否可以检索此数据?
谢谢。
_setDomainName 设置 cookie 的域。
Sets the domain name for the GATC cookies. There are three modes to
this method: ("auto" | "none" | [domain]). By default, the method is
set to auto, which attempts to resolve the domain name based on the
document.domain property in the DOM.
它可以用于例如只为某个子域设置 cookie,或者只为主域设置 cookie,再加上它用于跨域跟踪。通常不需要跟踪单个域。
如果您为 cookie 域设置了错误的值Google Analytics 无法设置 cookie,跟踪调用将失败。
所以数据根本没有发送,您无法检索它。
我有几周不正确地设置了 _domainname 值。
UA 代码设置正确。
在 _domainname 设置不当之前,所有数据都被正确捕获。
设置不正确的那两周数据去了哪里?
是否可以检索此数据?
谢谢。
_setDomainName 设置 cookie 的域。
Sets the domain name for the GATC cookies. There are three modes to this method: ("auto" | "none" | [domain]). By default, the method is set to auto, which attempts to resolve the domain name based on the document.domain property in the DOM.
它可以用于例如只为某个子域设置 cookie,或者只为主域设置 cookie,再加上它用于跨域跟踪。通常不需要跟踪单个域。
如果您为 cookie 域设置了错误的值Google Analytics 无法设置 cookie,跟踪调用将失败。
所以数据根本没有发送,您无法检索它。