我正在尝试使用细分(https://github.com/segmentio/analytics-react)与用户的引荐来源进行区分。
有两种方法可以跟踪我要跟踪的流程:一种来自电子邮件的cta,另一种来自具有路径/ideas/{idea.id}
如何根据用户引荐来源网址触发这两个事件,尤其是来自电子邮件的事件?
我要跟踪的流程的第一页中的代码中有这个
componentDidMount() {
window.analytics.track(
'Flow started', //I want to have Flow started from email or Flow started from dashboard
{
'Page': window.location.pathname,
'Features': window.AH.featureFlags,
'Locale': window.AH.featuresLocale,
'Referrer': document.referrer,
}
);
}