Développer ma barre des réalisations de la Communauté.

Mark Solution

Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.

RÉSOLU

_satellite.track() and passing related information

Avatar

Level 2

The Launch documentation suggests that the _satellite.track() function can be used to pass along extra information in the syntax:

_satellite.track('contact_submit', { name: 'John Doe' });

However when I access this detail object using %event.detail%, the element is resolved as "[object Object]"

Have I done something wrong or is this an error in the documentation?

1 solution acceptée

Avatar

Réponse correcte par
Employee

Can you try using %event.detail.name% to access the detail passed in _satellite.track() function ?

Voir la solution dans l'envoi d'origine

3 Replies

Avatar

Réponse correcte par
Employee

Can you try using %event.detail.name% to access the detail passed in _satellite.track() function ?

Avatar

Level 4

As AtulSingh mentioned above, you're getting [object Object] because the result is not a single string value, but rather an Object = { name: 'John Doe' }

If you want to get the value 'John Doe' , you can use %event.detail.name% to retrieve the value of name.

Avatar

Level 2

Ah perfect, yup that works! Thanks