Hi,
I am doing a POC on implementing Adobe Target SDK in Angular application.
My main goal is to show different components based on the Activity configured.
Example: if the user qualifies for Experience A then show Angular component A else Angular component B.
While I am following the docs but I am still not able to pass the response (activity.id or experience.name or Feature flags response from the content) received from Target SDK to the Angular components.
Is there any way I can achieve this?
Below is the code I am using. How can I pass the value of featureFlags.flag to component?
Solved! Go to Solution.
Did you try with const flag = attributes.getValue("homepage", "feature-flag"); ? as mentioned here: https://adobetarget-sdks.gitbook.io/docs/on-device-decisioning/execute-ab-tests-with-feature-flags
(assuming ''test-feature" is your mbox/location)
Did you try with const flag = attributes.getValue("homepage", "feature-flag"); ? as mentioned here: https://adobetarget-sdks.gitbook.io/docs/on-device-decisioning/execute-ab-tests-with-feature-flags
(assuming ''test-feature" is your mbox/location)