How to Fetch OSGI configurations value in JavaScript ?
Solved! Go to Solution.
Views
Replies
Total Likes
There are two ways.
1. OSGI configuration data in Sightly, where your JavaScript will pickup configuration from there. An example implementation can be found here https://sourcedcode.com/blog/aem/with-htl-pass-data-from-aem-backend-to-javascript
2. OSGI configuration data via Sling Servlet. You can create a servlet that can be utilized by the JavaScript business logic. An Ajax request should be sufficient to obtain the OSGI configuration data.
You need to read in your component html from sling model and keep it in hidden field and then use it in javascript.
Views
Replies
Total Likes
Hi @karthick1356,
To fetch the OSGI Values, first read them in HTML from Java via data attribute and in JS you can initialize the module and access it.
Find my related answer here
Hope this helps.
Thanks,
Kiran Vedantam.
Views
Replies
Total Likes
Views
Replies
Total Likes
There are two ways.
1. OSGI configuration data in Sightly, where your JavaScript will pickup configuration from there. An example implementation can be found here https://sourcedcode.com/blog/aem/with-htl-pass-data-from-aem-backend-to-javascript
2. OSGI configuration data via Sling Servlet. You can create a servlet that can be utilized by the JavaScript business logic. An Ajax request should be sufficient to obtain the OSGI configuration data.
Views
Likes
Replies
Views
Likes
Replies