1

react-ga在我的应用程序中使用,一切正常,但我想更改每个设备的客户端 ID。这就是我初始化 react-ga的方式。

ReactGA.initialize('UA-11xxxxxx-x', {
    debug: true,
    titleCase: false,
    'cookieDomain': 'auto',
    gaOptions: {
        name: 'DyuserName',
        userId: 'DyuserId'
    }
});

通常在js中我们这样
在此处输入图像描述

我如何在 react-ga 中更改客户端 ID

4

1 回答 1

0

您还需要将 userId 设置为 DyuserId,如下所示:

ReactGA.ga("set", "userId", "" + DyuserId);

于 2019-05-27T17:16:17.957 回答