3

Are there any js plugins for angular based frontend that has a standard way of collecting data for analytics on users based on the browser fingerprinting libraries like fingerprint2.js or clientjs?

4

1 回答 1

0

我认为在 AngularJS 或 Angular 2/4 中没有解决这个问题的方法。

但我设法使用以下方法做到了这一点。任何一个都行——

  1. clientjs.org
  2. 自定义工作示例

基本上,上面提到的两种方式都会读取 localstorage 来检查是否存储了 10 位数字(带有密钥名称)。如果有,只需使用它或生成新的并将其存储在本地存储中。

return checksum([
    navigator.userAgent,
    [screen.height, screen.width, screen.colorDepth].join('x'),
    new Date().getTimezoneOffset(),
    !!window.sessionStorage,
    !!window.localStorage,
    map(navigator.plugins, function (plugin) {
        return [
            plugin.name,
            plugin.description,
            map(plugin, function (mime) {
                return [mime.type, mime.suffixes].join('~');
            }).join(',')
        ].join("::");
    }).join(';')
].join('###'));
于 2017-09-15T14:30:28.657 回答