Official Documentation指出您可以在服务器端选择版本,然后在前端设置所选版本。有两个不同的例子。一种是使用cxApi设置变体,另一种只是将数据发布到ga。我可以选择其中之一,还是必须同时选择两者?
仅使用ga
ga('create', 'UA-XXXXX-Y', 'auto');
ga('set', 'expId', 'YByMKfprRCStcMvK8zh1yw');
ga('set', 'expVar', 2);
ga('send', 'pageview');
使用cxApi
cxApi.setChosenVariation(2, 'YByMKfprRCStcMvK8zh1yw');
ga('create', 'UA-XXXXX-Y', 'auto');
ga('send', 'pageview');