我已经成功实施了堆分析,并且我看到了数据。
我设置用户的方式是:
window.heap.identify(currentUser.id);
window.heap.addEventProperties({ platform_type: 'Web' });
if (currentUser.id) {
console.log('been here');
window.heap.addUserProperties({
'first_name': currentUser.first_name,
'last_name': currentUser.last_name,
'type': currentUser.type,
'country': currentUser.country,
'company_name': currentUser.company_name,
'role': currentUser.role,
'email': currentUser.email
});
}
我看到电子邮件属性数据被记录和关联(电子邮件是已经由Heap预先定义的属性),但我没有看到任何其他属性。
因此,addUserProperties
调用正在运行,但有些数据被忽略了。
知道我做错了吗?
谢谢!
URI
答案 0 :(得分:0)
对于任何有同样问题的人,对我来说,自定义属性会在几个小时后开始出现..